generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
feedback.html
103 lines (88 loc) · 3.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="A website for Chemistry and Coding enthusiasts, depicting the key milestone events in the history of Computational Chemistry.">
<meta name="keywords"
content="Chemistry, Computational Chemistry, Computer, Coding, Programming Languages, Molecular Modelling, Molecular Dynamics, molecular graphics">
<link href="assets/css/style.css" rel="stylesheet">
<title>Chem Meets Codes</title>
</head>
<body>
<header>
<a href="feedback.html">
<img src="assets/images/Logo.png" id="logo-img" alt="logo chem meets codes"
aria-label="logo of chem meets codes featuring codes leading to molecular design and eventually to drug molecules in computer ">
<h2 id="logo">Chem Meets Codes</h2>
</a>
<nav>
<ul id="menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="timeline.html">Timeline</a>
</li>
<li>
<a href="feedback.html">Feedback</a>
</li>
</ul>
</nav>
</header>
<div id="feedback-intro">
<h3>Please give us your valuable feedback!</h3>
<p>
We constantly strive to improve and update the contents of the website. Please add your valuable information
to us and help convey authentic information across the globe!
</p>
</div>
<form id="questions" action="https://formdump.codeinstitute.net/" method="POST">
<label for="visit-date">When did you visit the website?</label>
<input type="date" id="visit-date" name="visit-date" required>
<br>
<br>
<div id="interest">
Do you find the website interesting?
<input type="radio" name="interest-yes-no" value="yes"> Yes
<input type="radio" name="interest-yes-no" value="no"> No
</div>
<br>
<div id="informative">
Do you find the website informative?
<input type="radio" name="informative-yes-no" value="yes">Yes
<input type="radio" name="informative-yes-no" value="no">No
</div>
<br>
<label for="suggestions1">How do you feel upon visiting this site? Suggestions please:</label>
<textarea id="suggestions1" name="add-suggestions" placeholder="How do you feel upon visiting this site?"
rows="10" cols="80" required>
</textarea>
<br>
<div id="satisfaction">
Do you feel satisfied with the content provided?
<input type="radio" name="satisfaction-yes-no" value="yes">Yes
<input type="radio" name="satisfaction-yes-no" value="no">No
</div>
<br>
<label for="suggestions2"> Do you feel it helped you learn? Suggestions please:</label>
<textarea id="suggestions2" name="add-suggestions" placeholder="Do you feel it helped you learn?" rows="10"
cols="80" required>
</textarea>
<br>
<label for="submit"></label>
<input type="submit" id="submit" value="Submit!">
</form>
<footer id="footer">
<ul class="social-networks">
<li><a href="https://www.linkedin.com" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li><a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter-square"></i></a></li>
</ul>
<!--Font awesome script information-->
<script src="https://kit.fontawesome.com/b83175b9a4.js" crossorigin="anonymous"></script>
</footer>
</body>
</html>