-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
67 lines (52 loc) · 2.15 KB
/
homepage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>HTML - Jessica Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<div class="container">
<header>
<div class="center">
<img src="./imagem_home/366831329_678594540993002_8671520997531535986_n.jpg">
</div>
<h1>Jessica Peixoto</h1>
</header>
<section>
<nav>
<h3 style="text-align: center;">Aulas</h3>
<ul>
<li id="primeiro-link"><a href="./index.html">Home</a></li>
<li><a href="AULA-01-listas-e-links.html">Listas e Links</a></li>
<li><a href="formatacao-02-textos.html">Formatação de Texto</a></li>
<li><a href="04-tabelas.html">Tabelas</a></li>
<li><a href="05-layouts.html">Layouts</a></li>
<li><a href="./06-formularios.html">Contato</a></li>
</ul>
<h3 style="text-align: center;">Redes Sociais</h3>
<ul>
<li><a href="https://br.linkedin.com/in/jessica-peixoto-362b77103/">LinkedIn</a></li>
<li><a href="https://www.instagram.com/jes.peixoto/">@jes.peixoto</a></li>
</ul>
</nav>
<article>
<h2 style="text-align: center;">Estudante do Curso FullStack - EBAC</h2>
<p style="text-align: center; font-size: 15px; font-weight: bold;"> Neste site, exploraremos as últimas tendências tecnológicas, compartilharemos dicas e truques para usar dispositivos e aplicativos de forma eficaz e discutiremos como a tecnologia está moldando nosso futuro.</p>
<p style="text-align: center; font-size: 15px; font-weight: bold;">Junte-se a nós enquanto exploramos o emocionante mundo da tecnologia moderno...</p>
</article>
</section>
<footer>
<a href="https://github.com/JesPeixoto" target="_blank" rel="noopener noreferrer">
<img src="./imagem_home/github.svg">
<p>Github</p>
</a>
<a href="https://www.linkedin.com/in/jessica-peixoto-362b77103/" target="_blank" rel="noopener noreferrer">
<img src="imagem_home/linkedin (1).svg">
<p>Linkedin</p>
</a>
</footer>
</div>
</body>
</html>