-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (58 loc) · 1.64 KB
/
Copy pathindex.html
File metadata and controls
59 lines (58 loc) · 1.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/default2.css" />
<link rel="stylesheet" href="css/momento.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU"
crossorigin="anonymous"
/>
<title>momento!</title>
</head>
<body>
<div class="wrapper">
<div class="clock__wrapper">
<h1>00:00</h1>
</div>
<div class="userName">
<h1></h1>
</div>
<div class="user__wrapper">
<form class="user__js">
<input class="showing" type="text" placeholder="please your name " />
</form>
</div>
<div class="showList todo__contain">
<div class="todo__wrapper">
<form action="submit" class="toDoFormJs">
<input type="text" placeholder="you should to do!" />
</form>
<div class="todoList__contain">
<ul id="toDoId" class="toDoList">
<h1>Today</h1>
</ul>
<ul id="toWeekId" class="toDoList__week">
<h1>Weekend</h1>
</ul>
</div>
</div>
</div>
<div class="weather__wrapper">
<span class="weather__place"></span>
<span class="weather__temp"></span>
<span class="weather__name"></span>
<span class="weather__ico">
<i></i>
</span>
</div>
</div>
<script src="./js/lastWorkJs/clock-gretting.js"></script>
<script src="./js/lastWorkJs/toDoList.js"></script>
<script src="./js/lastWorkJs/randomBg.js"></script>
<script src="./js/lastWorkJs/weather.js"></script>
</body>
</html>