-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 860 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 860 Bytes
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>
<head>
<title>Welcome to my world</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="js-clock">
<h1>00:00</h1>
</div>
</form>
<form class="js-form">
<input type="text" placeholder="What's your name?" />
</form>
<h4 class="js-greeting greeting"></h4>
<form class="js-toDoForm">
<input type="text" placeholder="Write a to do!" />
</form>
<ul class="js-toDoList">
</ul>
<span class="js-weather"></span>
<script src="greeting.js"></script>
<script src="clock.js"></script>
<script src="todo.js"></script>
<script src="bg.js"></script>
<script src="weather.js"></script>
</body>
</html>