-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathaula_html.html
64 lines (53 loc) · 1.35 KB
/
aula_html.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
<!-- HTML = HyperText Markup Language -->
<!-- <nome_tag>Conteúdo da tag</nome_tag> -->
<!-- <p>Hello world</p> -->
<!DOCTYPE html>
<html>
<head>
<title>Aula 1: PicPro</title>
<link rel="stylesheet" type="text/css" href="/aula_css.css" />
</head>
<body>
<header>
<img src="logo-da-pagina" alt="" />
<!-- menu principal -->
</header>
<main>
<div class="exemploDivFlexbox">
<div class="div1">teste</div>
<div class="div2">tests</div>
</div>
<section>
<!-- tags de títulos -->
<h1>Meu portfolio: Maria Porcina</h1>
<h2>Dev Front End</h2>
<p>Um texto falando sobre mim</p>
</section>
<section>
<h3>Linguagens que eu tenho experiencia</h3>
<!-- lista não ordenada -->
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ul>
</section>
<section>
<h3>Cidades que já visitei</h3>
<ol>
<li>Curitiba-PR</li>
<li>São Paulo-SP</li>
<li>Rio de Janeiro-RJ</li>
</ol>
</section>
<div>
<h3>Página do Kenzie</h3>
<a href="https://kenzie.com.br/">Kenzie</a>
<img src="img/kenzie.png" alt="logo da Kenzie" />
</div>
</main>
<footer>
<p>copyright</p>
</footer>
</body>
</html>