-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 993 Bytes
/
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
<!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/stylesheet.css">
<title>TO-DO</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="clear">
<em class="fa fa-refresh"></em>
</div>
<h1>TO-DO</h1>
</div>
<div class="content">
<ul id="list"></ul>
</div>
<div class="add-item">
<em class="fa fa-plus-square"></em>
<input type="text" id="input" placeholder="Přidej úkol">
</div>
</div>
<audio id="audio" src="https://raw.githubusercontent.com/yumenochikara/yumenochikara.github.io/main/assets/Dreamy-ambient-loop.mp3" loop hidden></audio>
<script src="js/app.js"></script>
<script src="https://kit.fontawesome.com/752f17b61a.js" crossorigin="anonymous"></script>
</body>
</html>