-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeLast.html
More file actions
47 lines (47 loc) · 1.67 KB
/
Copy pathcodeLast.html
File metadata and controls
47 lines (47 loc) · 1.67 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
<!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="user__wrapper">
<form class="user__js">
<input class="showing" type="text" placeholder="please your name ">
<h1></h1>
</form>
</div>
<div class="todo__wrapper">
<form action="submit" class="toDoFormJs">
<input type="text" placeholder="you should to do!">
</form>
<ul class="toDoList">
<h1>Today</h1>
</ul>
<ul class="toDoList__week">
<h1>Weekend</h1>
</ul>
</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>