-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (56 loc) · 2.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>YOUR LIFE</title>
<link href="./images/cervo.png" rel="icon" type="icon.png">
<link href="./style/style.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Reem+Kufi+Ink&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Teko:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h4>WELCOME TO YOUR LIFE :)</h4>
</header>
<section class="all-content">
<div class="all-todo-content">
<form >
<input type="text" class="todo-input" placeholder="add today's task here">
<button type="submit" class="todo-btn">
<i class="fa-solid fa-plus"></i>
</button>
</form>
<div class="todo-container">
<ul class="todo-list"></ul>
</div>
</div>
<div id="anot-save" class="anot-content">
<textarea id="textArea" class="anot-text" cols="130" rows="15" placeholder="Anotações aqui! :)"></textarea>
<button class="save-btn">SALVAR</button>
</div>
<div class="content-timer">
<h1 id="timer">00:00:00</h1>
<button class=" btn btn-start">
<i class="fa-solid fa-play"></i>
</button>
<button class="btn btn-pause">
<i class="fa-solid fa-pause"></i>
</button>
<button class="btn btn-stop">
<i class="fa-solid fa-stop"></i>
</button>
</div>
<div class="gif">
<img src="./images/aesthetic-anime.gif">
</div>
</section>
<script src="./script/script.js"></script>
</body>
</html>