-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.13 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.13 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
<link rel="icon" type="gif" href="./mundo.gif">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img class="img1" src="./hello.gif" alt="Gif escrito Hello World">
<h2 class="titulo">
Que bom te ver por aqui, <span class="nome" id="nome-usuario">Fulano</span>!
</h2>
</header>
<section>
<h2>
HTML
</h2>
<p>
Linguagem de Marcação de Hipertexto - Estrutura da página WEB
</p>
<h2>
CSS
</h2>
<p>
Folha de Estilo em Cascata - Estiliza a página WEB
</p>
<img class="img2" src="./Ola.png" alt="Imagem da terra com texto de HTML, CSS e JavaScript">
</section>
<footer>
<p>
Atualizado em: <i>02/04/2024</i> - Por <b>Tiago M. R.</b>
</p>
</footer>
<script src="./main.js"></script>
</body>
</html>