forked from juliavelosodias/Web-References-HTML5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 2.37 KB
/
index.html
File metadata and controls
61 lines (52 loc) · 2.37 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página Inicial</title>
<link rel="stylesheet" href="utils/css/global.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="logo">Tutorial HTML</div>
<ul class="nav-links">
<li><a href="referencias.html">Referências</a></li>
<li><a href="sobre.html">Sobre Nós</a></li>
</ul>
</nav>
</header>
<main class="index-main">
<section class="hero-index">
<h1>Tutorial Completo de Tags HTML</h1>
<p>Descubra as principais tags HTML com explicações detalhadas, exemplos práticos e referências baseadas no W3Schools</p>
</section>
<section class="features-index">
<div class="feature-card-index">
<h3>📚 Explicações Detalhadas</h3>
<p>Cada tag HTML é explicada com definições claras, exemplos de uso e atributos mais importantes.</p>
</div>
<div class="feature-card-index">
<h3>💻 Exemplos Práticos</h3>
<p>Aprenda através de código real que você pode testar e usar em seus próprios projetos.</p>
</div>
<div class="feature-card-index">
<h3>🔗 Referências Organizadas</h3>
<p>Navegue facilmente entre as diferentes tags HTML através de nossa biblioteca organizada.</p>
</div>
</section>
<section class="cta-index">
<h2>Conheça algumas das principais tags HTML</h2>
<p>Explore nossa biblioteca completa de tags HTML para aprender mais sobre cada uma delas.</p>
<a href="referencias.html" class="btn-index">Ver Referências</a>
</section>
</main>
<footer>
<p>Copyright © 2025 Tutorial HTML5</p>
<p><a href="referencias.html">Referências</a> | <a href="sobre.html">Sobre Nós</a></p>
</footer>
</body>
</html>