-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (53 loc) · 1.26 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
<!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" />
<link rel="stylesheet" href="instyle.css" />
<title>ToDO</title>
</head>
<body>
<script src="./app.js"></script>
<header>
<nav>
<ul>
<a href="">Home</a>
<a href="./about.html">about</a>
<input type="button" value="sing up" />
</ul>
</nav>
</header>
<img alt="logo" src="LOGO.jpg" width="200px" />
<main>
<br /><br /><br />
<br />
<section>
<table border="7">
<th colspan="2" bgcolor="gray">To DO List</th>
<tr></tr>
<tr>
<th>Tasks</th>
<th>Statuse</th>
</tr>
<tr>
<td>Task1</td>
<td bgcolor="GREEN">DONE</td>
</tr>
<tr>
<td>Task2</td>
<td>still</td>
</tr>
<tr>
<td>Task3</td>
<td bgcolor="GREEN">DONE</td>
</tr>
</table>
</section>
</main>
<footer>
<h4>© Narmeen</h4>
<h3>tel: +6748494757</h3>
</footer>
</body>
</html>