-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.html
111 lines (91 loc) · 4.17 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Feedback</title>
<!-- Add Bootstrp -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- link to css -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css/feedback.css">
<!-- Add font style from google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="">🐰</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="assignment.html">Assignment</a>
</li>
<li class="nav-item">
<a class="nav-link" href="me.html">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">About Bunny</a>
</li>
<li class="nav-item">
<a class="nav-link" href="statement.html">Q&A</a>
</li>
<li class="nav-item">
<a class="nav-link" href="feedback.html">Feedback</a>
</li>
</ul>
</div>
</nav>
<!-- the end of nav bar -->
<h1>Feedback</h1>
<!-- the start of feedback form -->
<form class="feedback-form" enctype="text/plain"
action="mailto:[email protected]">
<div class="section">
<label for="name">What is your name?</label>
<br>
<input type="text" name="name" id="name">
</div>
<div class="section">
<label for="email">What is your email address?</label>
<br>
<input type="email" name="email" id="email">
</div>
<div class="section">
What is your gender?
<div>
<input type="radio" name="gender" value="male" id="male">
<label for="male">Male</label>
<input type="radio" name="gender" value="female" id="female">
<label for="female">Female</label>
<input type="radio" name="gender" value="other" id="other">
<label for="other">Other</label>
<input type="radio" name="gender" value="not-to-say" id="not-to-say">
<label for="not-to-say">I prefer not to say</label>
</div>
</div>
<div class="section">
<label for="feedback-text">What content about bunnies you want to see in the future? Tell us!</label>
<br>
<textarea name="feedback-text" id="feedback-text" rows="10" cols="40"></textarea>
</div>
<hr>
<div class="section">
Submit:
<input type="submit" value="Send it">
or:
<input type="reset" value="Clear">
</div>
<hr>
</form>
<!-- the end of feedback form -->
</body>
</html>