-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 2.24 KB
/
index.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
<!doctype html>
<!-- doctype informa ao agente de usuario a versão do html que deve ser renderizada-->
<html lang="pt-br">
<head>
<title>Fundamentos CSS</title>
<meta charset="utf-8">
<meta name="author" content="Daniel">
<meta name="description" content="descrição bacanuda">
<meta name="keywords" content="html5, tecnologia">
<link rel="stylesheet" href="CSS/estilos.css">
</head>
<body>
<div id="principal">
<header class="hero">
<nav>
<ul>
<li><a href="index.html">Início</a></li>
<li><a href="#">Projetos</a></li>
<li><a href="#">Quem sou</a></li>
</ul>
</nav>
<div class="hero-content">
<h1>Curso Web Fundamentos</h1>
<p>Aprenda HTML, CSS e JavaScript</p>
</div>
</header>
<main>
<section class="content-section">
<div class="card">
<img src="imagens/card_01.png" alt="">
<p>Seletores</p>
</div>
<div>
<img class="card">
<img src="imagens/card_05.jpg" alt="">
<p>Posicionamento</p>
</div>
<div>
<img src="imagens/card_04.jpg" alt="">
<p>Fontes</p>
</div>
</section>
<section class="content-section-two">
<article>
<header>
<h2>Título</h2>
</header>
<p>Primeiro parágrafo de exemplo</p>
<p>Segundo parágrafo de exemplo</p>
</article>
</section>
</main>
<footer class="rodape">
<p>Copyright © 2023 - Design by <a href="https://github.com/epannunzio" target="_blank">EPannunzio</a></p>
</footer>
</div>
</body>
</html>