jsaplication commited on
Commit
01c2afe
·
1 Parent(s): e71f8a1

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +51 -17
index.html CHANGED
@@ -1,19 +1,53 @@
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
  <!DOCTYPE html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <link rel="stylesheet" href="style.css">
7
+ <title>Portfólio do Aplicativo de Conversas</title>
8
+ </head>
9
+ <body>
10
+ <header>
11
+ <nav>
12
+ <ul>
13
+ <li><a href="#sobre">Sobre</a></li>
14
+ <li><a href="#recursos">Recursos</a></li>
15
+ <li><a href="#contato">Contato</a></li>
16
+ </ul>
17
+ </nav>
18
+ </header>
19
+
20
+ <section id="sobre" class="section">
21
+ <div class="container">
22
+ <h1>Aplicativo de Conversas</h1>
23
+ <p>Um aplicativo incrível para manter contato com amigos e familiares.</p>
24
+ </div>
25
+ </section>
26
+
27
+ <section id="recursos" class="section">
28
+ <div class="container">
29
+ <h2>Recursos</h2>
30
+ <ul>
31
+ <li>Chat em tempo real</li>
32
+ <li>Envio de mensagens multimídia</li>
33
+ <li>Emojis e adesivos divertidos</li>
34
+ <li>Chamadas de vídeo de alta qualidade</li>
35
+ </ul>
36
+ </div>
37
+ </section>
38
+
39
+ <section id="contato" class="section">
40
+ <div class="container">
41
+ <h2>Contato</h2>
42
+ <p>Entre em contato conosco para obter mais informações:</p>
43
+ <p>Email: [email protected]</p>
44
+ </div>
45
+ </section>
46
+
47
+ <footer>
48
+ <p>&copy; 2023 Aplicativo de Conversas</p>
49
+ </footer>
50
+
51
+ <script src="script.js"></script>
52
+ </body>
53
  </html>