forked from phuocn0302/BentoStartpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (52 loc) · 1.46 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title><3</title>
<link rel="stylesheet" href="app.css" />
<script src="https://unpkg.com/lucide@latest"></script>
</head>
<!--
╔╗ ╔═╗╔╗╔╔╦╗╔═╗
╠╩╗║╣ ║║║ ║ ║ ║
╚═╝╚═╝╝╚╝ ╩ ╚═╝
-->
<body class="">
<div class="container">
<!-- Clock and Greetings -->
<div class="timeBlock">
<div class="clock">
<div id="hour"></div>
<div id="separator"></div>
<div id="minutes"></div>
</div>
<div class="date">
<div id="month"></div>
<div id="day"></div>
</div>
<div id="greetings"></div>
</div>
<div class="linksBlock" id="linksBlock"></div>
<div class="imageBlock" id="imgBlock">
<img
src="assets/img/ferdinand-ladera-rice-terraces.jpg"
alt="Rice fields"
/>
</div>
</div>
<!-- Config -->
<script src="config.js"></script>
<!-- Scripts -->
<script src="assets/js/layout.js"></script>
<script src="assets/js/time.js"></script>
<script src="assets/js/greeting.js"></script>
<!-- Generators -->
<script src="assets/js/buttons.js"></script>
<!-- Icons -->
<script>
lucide.createIcons();
</script>
</body>
<!-- Developed and designed by Miguel Ávila: -->
<!-- https://avila.sh-->
</html>