-
Notifications
You must be signed in to change notification settings - Fork 0
/
faqadminiview.html
58 lines (45 loc) · 1.2 KB
/
faqadminiview.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
<!DOCTYPE html>
<html>
<head>
<title>Reminder Website - FAQ</title>
<link rel="stylesheet" type="text/css" href="faqadminview.css"/>
</head>
<body>
<header>
<div class="">
<div id="">
<img src="web logo.png" class="logo">
</div>
</div>
</header>
<nav>
<ul >
<li class="current"><a href="home.html">Home</a></li>
<li><a href="calender.html" >Calendar</a></li>
<li><a href="todo.html">To-Do</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
<div class="table">
<h1>FAQ Admin View FAQ</h1>
<table border="1">
<tr>
<th>Name</th>
<th>Email</th>
<th>Question</th>
</tr>
<tr>
<td>1</td>
<td></td>
<td></td>
</tr>
<tr>
</table>
</div>
<br><br><br><br><br><br>
<footer>
<p>RemindMe! , Copyright © 2023</p>
</footer>
</body>
</html>