-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (61 loc) · 1.73 KB
/
index.html
File metadata and controls
63 lines (61 loc) · 1.73 KB
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
61
62
63
<!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>Donation History</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div>
<header>
<div class="title"
<h1>Just Aware</h1>
</div>
</header>
<nav>
<ul class="navlist">
<li><a href="/Home" >Home</a></li>
<li><a href="/Register">Register</a></li>
<li><a href="/Map Search">Map Search</a></li>
<li><a href="/Donation">Donation</a></li>
<li><a href="/More">More</a></li>
</ul>
</nav>
</header><h2>
<div id="historytitle">
Donation History
<div id="input">
<input type="text" placeholder="Search history">
<button type="submit">Search</button></div></div>
</h2>
<div id="history">
<div>
<h3> todays date</h3>
</div>
<table>
<tr>
<ol>
<li>history 8</li>
<li>history 7</li>
<li>history 6</li>
<li>history 5</li>
<li>history 4</li>
<li>history 3</li>
<li>history 2</li>
<li>history 1</li>
</ol>
</tr>
</table>
</div>
<div id="option">
<h4 >options</h4>
<ul id="opt">
<li><a href="clear history">clear history</a></li>
<li><a href="sort by">sort by</a></li>
</ul>
</div>
</div>
</body>
</html>