-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
39 lines (35 loc) · 1.18 KB
/
feedback.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cartoon Magic</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="navbar">
<center>
<h4>
<a href="index.html">Home</a>
<a href="popular.html">Popular</a>
<a href="timings.html">Timings</a>
<a href="#">Feedback</a>
</h4>
</center>
</div>
<div id="main-heading">
<h2>Send us your Feedback</h2>
</div>
<div id="form">
<form>
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="feedback">Feedback:</label><br>
<textarea id="feedback" name="feedback" rows="4" cols="50" required></textarea><br><br>
<button><a href="thanks.html">Submit</a></button>
</form>
</div>
</body>
</html>