-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (29 loc) · 1.07 KB
/
index.html
File metadata and controls
47 lines (29 loc) · 1.07 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
45
46
47
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Saudação Dinâmica</title>
<link rel="stylesheet" href="style.css">
<!--- manisfest do pwa-->
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#ffffff">
</head>
<body class="manha">
<h1 id="saudacao">Bom Dia!</h1>
<div id="caixa">
<!-- From Uiverse.io -->
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle"> <!-- inicio da div---->
<p id="frase"></p>
<p id="hora"></p>
<p id="data"></p>
<p id="diaTipo"></p>
</div><!-- fechamento da div---->
<div class="notibody"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>