-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Application</title>
<link rel="stylesheet" href = "style.css" />
</head>
<body>
<div class="weather_settings">
Вы здесь!
</div>
<div class="js_weather weather"></div>
<div class="js_clock clock">
<h1>00:00</h1>
</div>
<div class="js_formContainer">
<form class="js_form form">
<input type="text" placeholder="Введите имя" />
</form>
<div>
<span class="js_hello"></span>
<div class= "button">
<button class="js_resetName hidden"></button>
</div>
</div>
<h2 class="js_hello hello"></h2>
</div>
<form class = "js_todoForm">
<input type="text" placeholder="Введите задачу" />
</form>
<ul class="js_todoList"></ul>
<script src="todo.js"></script>
<script src="clock.js"></script>
<script src="hello.js"></script>
<script src="bg.js"></script>
<script src="weather.js"></script>
</body>
</html>