-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquery.html
31 lines (31 loc) · 1.12 KB
/
query.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
<!DOCTYPE html>
<html>
<head>
<title>query</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<header>
<ul>
<li><a href="./index.html"><img id="logo" src="./titlepng.png"></a></li>
<li><a href="./index.html"><h1 id="home">Home</h1></a></li>
<li><a href="about.html"><h1>About</h1></a></li>
<!-- <li><a href="./schedule.html"><h1>Schedule</h1></a></li> -->
<li style="margin-left: auto;"><a href="./adminlogin.html"><h1>View Schedule</h1></a></li>
<!-- <li><a href="#querie"><h1>Ask Queries</h1></a></li> -->
<li><a href="contacts.html"><h1 id="push">Contact us</h1></a></li>
</ul>
</header>
<br><br><br><br><br><br>
<div id="querie" style="margin-top: auto;">
<h3>Queries/Review</h3>
<form method="POST">
<input id="content" type="text" name="Name" placeholder="Your Name" required><br>
<input id="content" type="email" name="email" placeholder="Your Email ID" required><br>
<input id="comment" type="text" name="comment" placeholder="Comment" required>
<input id="submit" type="submit">
</form>
</div>
<script src="./script.js"></script>
</body>
</html>