-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modelo</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body onload="carregar()">
<header>
<h1>Hora do dia</h1>
</header>
<section>
<div id="msg">Agora é ${} horas</div>
<div>
<img id="img" style="border-radius: 50%" width="250" height="250" src="pexels-chris-f-16418061.jpg" alt="PATO">
<img id="img" style="border-radius: 50%" width="250" height="250" src="pexels-eberhard-grossgasteiger-2310642.jpg" alt="Foto do Horário noite" hidden>
<img id="img" style="border-radius: 50%" width="250" height="250" src="pexels-sebastian-arie-voortman-189349.jpg" alt="Foto do Horário tarde" hidden>
<img id="img" style="border-radius: 50%" width="250" height="250" src="pexels-miguel-á-padriñán-19670.jpg" alt="Foto do Horário manha" hidden>
</div>
</section>
<footer>
<p>© Bruh</p>
</footer>
<script src="bruh.js"></script>
</body>
</html>