-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.04 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
<!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="https://fonts.google.com/specimen/Lilita+One">
<title>DonezoBox</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.google.com/share?selection.family=Playwrite+BR+Guides">
</head>
<body>
<div class="container">
<div class="TODO-APP">
<h2>DonezoBox <img src="chart.png" alt=""></h2>
<div class="row">
<input type="text" id="input-box" placeholder="Add your task">
<button onclick="addtask()">ADD TASK</button>
</div>
<ul id="list-container">
<!-- Task list will be appended here -->
</ul>
</div>
</div>
<div class="image-container">
<img src="animegirl.png" alt="Anime Girl">
<img src="animeboy.png" alt="Anime Boy">
</div>
<script src="script.js"></script>
</body>
</html>