-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap" rel="stylesheet">
<title>Coffee Break</title>
</head>
<body>
<div class="grid-container">
<div class="item1">
<h2>Hi Juan 👋🏻</h2>
<p>Time for a coffee break. </p>
<hr>
</div>
<div class="item3">
<iframe src="html-table.html"
onload="this.before((this.contentDocument.body||this.contentDocument).children[0]);this.remove()"
width="100%" height="1000px" frameBorder="0"></iframe>
</div>
<div class="item4">
<h2> <span id="time">05:00</span> </h2><br><br>
<table style="width:100%">
<tr>
<th colspan='2'><span id="place">-</span></th>
</tr>
<tr>
<td style="text-align: right;"><img src="" id="wimg"></td>
<td style="text-align: left;"><span id="temp">-</span></td>
</tr>
<tr>
<td colspan='2'><span id="weather">-</span></td>
</tr>
</table>
</div>
<div class="item5">Made with Love and caffeine.</div>
</div>
<script src="js/config.js"></script>
<script src="js/main.js"></script>
</body>
</html>