forked from harshsingla/tankwarweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
35 lines (31 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Feedback Form</title>
<link rel="stylesheet" type="text/css" href="feedback.css">
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
</head>
<body>
<div id="container">
<h1>YOUR FEEDBACK</h1>
<hr>
<h3>NAME*</h3>
<input type="text" name="NAME" id="NAME" placeholder="John Wick" required autocomplete="off" />
<h3>EMAIL*</h3>
<input type="email" id="Email" placeholder="abc@blah.com" required autocomplete="off" />
<h3>How do you like our website:</h3>
<div id="emoji">
<button id="emot1"><img src="imagesfolder/cry.png" onclick="checkValid()"></button>
<button id="emot2"><img src="imagesfolder/hug.png" onclick="checkValid()"></button>
<button id="emot3"><img src="imagesfolder/wow.png" onclick="checkValid()"></button>
<button id="emot4"><img src="imagesfolder/heart.png" onclick="checkValid()"></button>
</div>
<h3>Feedback to creators:</h3>
<textarea id="review" placeholder="Enter your text here....."></textarea>
<br>
<input type="submit" id="submit" onclick="display()">
<script type="text/javascript" src="feedback.js"></script>
</div>
</body>
</html>