-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_survey_form.html
116 lines (107 loc) · 5.91 KB
/
user_survey_form.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
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- "X-UA-Compatible" and "IE=edge" optimises webpage display if user has older version of Internet Explorer -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Survey Form</title>
<link rel="stylesheet" href="assets/css/style.css">
<!-- Font Awesome link -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<!-- Link for Google font Roboto: -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap" rel="stylesheet">
<!-- Link for Google font Open Sans: -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<!-- Credit Comment -->
<!-- section-ids (section-one section-two section-three) taken from -->
<!-- https://codepen.io/nikkipantony/pen/vWgjBw -->
<!-- CodePen -->
<!-- CSS Multi-Grid One-Page Layout Experiment with CSS Grid, Flexbox and HTML5 Sections -->
<!-- Nikki Pantony -->
<!--Navigation links to pages on this site: -->
<div>
<nav>
<ul class="nav-menu">
<li class="bulletless"><a href="index.html" class="button" target="_self">Home</a></li>
<li class="bulletless"><a href="pre_and_first_generation.html" class="button" target="_self">Pre and First Generation</a></li>
<li class="bulletless"><a href="second_generation.html" class="button" target="_self">Second Generation</a></li>
<li class="bulletless"><a href="third_and_fourth_generation.html" class="button" target="_self">Third and Fourth Generation</a></li>
<li class="bulletless"><a href="user_survey_form.html" class="button" target="_self">User Survey Form</a></li>
</ul>
</nav>
</div>
<section id="section-three">
<h1 class=page_heading>
User survey form
</h1>
</section>
</header>
<main>
<section>
<div>
</div>
</section>
<div id="flex-container-form">
<!-- Credit Comment: Using Love Running Walkthrough Project Signup Form Challenge 1 on CodeInstitute as a Template for form -->
<div id="flex-form-left">
<section class="form-section">
<!-- div from https://stackoverflow.com/questions/16626240/vertical-align-html-form -->
<form action="https://formdump.codeinstitute.net/" method="POST">
<!-- <div style="text-align: center;" class="vertical-align-html-form"> -->
<div class="vertical-align-html-form">
<h2 class="pad">How was your experience on this website?</h2>
<label for="fname">First Name</label>
<input id="fname" type="text" name="first_name" required>
</div>
<div class="vertical-align-html-form">
<label for="lname">Last Name</label>
<input id="lname" type="text" name="last_name" required>
</div>
<div class="vertical-align-html-form">
<label for="email">Email Address</label>
<input id="email" type="email" name="email_address" required>
</div>
<!-- Credit Comment: emoticons from Font Awesome https://fontawesome.com/ -->
<div class="vertical-align-html-form">
<label for="bad"><i class="far fa-frown"></i> Bad</label>
<input id="bad" type="radio" name="experience" value="bad" required>
</div>
<div class="vertical-align-html-form">
<label for="alright"><i class="far fa-meh"></i> Alright</label>
<input id="alright" type="radio" name="experience" value="alright" required>
</div>
<div class="vertical-align-html-form">
<label for="good"><i class="far fa-smile-beam"></i> Good</label>
<input id="good" type="radio" name="experience" value="good" required>
</div>
<div class="vertical-align-html-form pad-submit">
<button class="submit" type="submit" value="Submit"></button>
</div>
</form>
<!-- end form -->
</section>
</div>
<div id=flex-form-image-right>
<section id="matrix-outer">
<div id="background-image-one" alt="image from the matrix movie with green ones and zeros descending in vertical lines progressing down the screen to different lengths and at different depths of field over a black background">
</div>
</section>
</div>
</div>
</section>
</main>
<footer>
<a href="https://github.com/Coder731/Portfolio_Project_1" target="_blank">Click here for source code</a>
<br>
<a href="https://github.com/Coder731/Portfolio_Project_1/blob/main/README.md" target="_blank">Click here for README</a>
<br>
2021
</footer>
</body>
</html>