-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback2.html
53 lines (52 loc) · 2.02 KB
/
feedback2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Feedback Form</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/67c66657c7.js"></script>
</head>
<body>
<section></section>
<div class="container">
<form>
<h1>Give Us Your Feedback</h1>
<p>Your feedback is valuable to us</p>
<!--<div class="emoji-box">
<button class="btn normal">🙂</button>
<button class="btn normal">😃</button>
<button class="btn normal">😇</button>
<button class="btn normal">😓</button>
<button class="btn normal">😔</button>
<button class="btn normal">😡</button>
</div>-->
<div class="id">
<input type="text" placeholder="Full Names">
<i class="far fa-user"></i>
</div>
<div class="id">
<input type="email" placeholder="Email Address">
<i class="far fa-envelope"></i>
</div>
<div class="id">
<textarea type="text" cols="15" rows="5" placeholder="Your Feedback here..."></textarea>
</div>
<div class="id">
<p class="question">Do you want to share this publicly?</p>
<div class="radio-btns">
<div class="one-btn">
<input type="radio" name="one" id="yes" />
<label for="yes">Yes</label>
</div>
<div class="radio-btns">
<div class="one-btn">
<input type="radio" name="one" id="no" />
<label for="no">No</label>
</div>
</div>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>