-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.63 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
<!-- Main HTML file for the To Do List -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Faizan Khan To Do List</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- Header class -->
<div class="todo-website">
<!-- Input a task to the To Do List -->
<h2>Faizan Khan To Do List<i class="fas fa-tasks"></i> <img src="images.jpg"></h2>
<div class="row">
<input type="text" id="input-box" placeholder="Add your text">
<div id="color">
<input type="radio" id="red" name="color">
<label for="red">Red</label>
<input type="radio" id="blue" name="color">
<label for="blue">Blue</label>
<input type="radio" id="green" name="color">
<label for="green">Green</label>
</div>
<button onclick="addTask()">Add</button>
<input type="date" id="due-date-input" class="due-date-input">
</div>
<ul id="list-container">
<!-- Adding the tasks to the To Do List-->
</ul>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>