forked from iekim9/new-to-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
myPage.html
42 lines (31 loc) · 938 Bytes
/
myPage.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
<!DOCTYPE HTML>
<html>
<div>
<head>
<title>new tab</title>
</head>
<link href="https://fonts.googleapis.com/css?family=Lora|Montserrat:300|Raleway" rel="stylesheet">
<!-- font-family: 'Montserrat', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Lora', serif; -->
<link rel="stylesheet" href = "style.css">
<body>
<div id="todo">
<br><br><br>
<input id="input" placeholder="what to do today?">
<ul id="list"></ul>
<script src = "todo.js"></script>
</div>
<div>
<br><br><br><br><br><br><br>
<h1>the time is <span id="time"></span></h1>
<h2>today is <span id="date"></span>
<script src="datetime.js"></script>
</h2>
<h3>the weather is <span id="weather"></span>
<script src="weather.js"></script>
</h3>
</div>
</body>
</div>
</html>