Spaces:
Running
Running
Commit
·
01c2afe
1
Parent(s):
e71f8a1
Update index.html
Browse files- index.html +51 -17
index.html
CHANGED
@@ -1,19 +1,53 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>© 2023 Aplicativo de Conversas</p>
|
49 |
+
</footer>
|
50 |
+
|
51 |
+
<script src="script.js"></script>
|
52 |
+
</body>
|
53 |
</html>
|