-
Notifications
You must be signed in to change notification settings - Fork 1
/
Simple_HTML_Structure.html
32 lines (32 loc) · 1.07 KB
/
Simple_HTML_Structure.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minha página em HTML</title>
</head>
<body>
<header>
<h1>Bem-vindos(as) a minha página em HTML</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Sobre</a></li>
<li><a href="#">Contato</a></li>
</ul>
</nav>
</header>
<section>
<h2>Seção 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam.</p>
</section>
<section>
<h2>Seção 2</h2>
<p>Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta.</p>
</section>
<footer>
<p>© 2024 Meu Site muito top. Todos os direitos reservados.</p>
</footer>
</body>
</html>