-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 934 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 934 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horacolor</title>
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="estilos/style.css">
</head>
<body onload="carregar()">
<header>
<h1>Horacolor</h1>
</header>
<section>
<div id="msg">
Aqui vai aparecer a mensagem
</div>
<div id="foto">
<img id="imagem" src="images/manha.jpg" alt="Foto do dia">
</div>
<p id="comprimentando"></p>
</section>
<footer>
<p>©Criado por Piter Gomes | <a href="https://www.linkedin.com/in/piter-gomes-4a39281a1/" target="_blank">Linkedin</a> | <a href="https://github.com/pitercoding" target="_blank">Github</a> </p>
</footer>
<script src="script.js"></script>
</body>
</html>