-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" href="./table.css" media="(min-width: 768px)">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
</head>
<body>
<header>
<h1>Road To Success</h1>
<h3>1st Presetation.</h3>
</header>
<main>
<section class="description">
<div class="form">
<div class="form-information">
<h2 class="form-title">To do List.</h2>
<p class="form-description">this small project is a test that tries to address some of the knowledge acquired during <br> <span class="subtitle">ROAD TO SUCCESS</span> </p>
</div>
<form action="" class="form-form">
<label for="task">Add here <b>your task</b>!!!</label>
<input type="task" placeholder="ex: Clean the bathroom." id="labelTask">
<button type="button" id="addTask" class="form-button" onclick="newElement()">Add</button>
</form>
</div>
</section>
<section class="taskList">
<div>
<div class="titleList">
<h2>Pending tasks</h2>
<i class="trash fa fa-trash" aria-hidden="true" onclick="clearAll()"></i>
</div>
<ul id="taskList-ul">
</ul>
</div>
<div>
<h2>Task Completed</h2>
<ul id="taskCompleted-ul">
</ul>
</div>
</section>
</main>
<script src="./main.js"></script>
</body>
</html>