-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.04 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="icon/clock.png" type="image/x-icon">
<title>Relógio inteligente</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body onload="carregar()">
<header>
<h1 id="title">Relógio inteligente</h1>
</header>
<section>
<div id="msg">
</div>
<div id="foto">
<img src="imagens/manha.jpg" id="imagem" alt="foto manhã">
</div>
</section>
<footer>
<a href="https://youtu.be/UXSWgnbSHxs" target="_blank" title="Link para o canal - Curso em video"><p>© CursoemVideo</p></a>
<a href="https://github.com/periclesmartins" target="_blank" title="Link para o GitHub do desenvolvedor Péricles Peres"><p>© Versão criada por Péricles Peres.</p></a>
</footer>
<script src="script.js"></script>
</body>
</html>