-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenroll.html
More file actions
281 lines (265 loc) · 8.3 KB
/
Copy pathenroll.html
File metadata and controls
281 lines (265 loc) · 8.3 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<!--
IMPORTANT: This project made use of code kindly provided by Code Institute Solutions at:
https://github.com/Code-Institute-Solutions/love-running-v3/tree/main/8.1-testing-and-validation
Images are sourced from https://www.pexels.com/
Icons are sourced from https://fontawesome.com/
Favicons are generated by https://favicon.io/favicon-converter
Literature content by Lino Bollansee enhanced by ChatGPT 3.5 https://chat.openai.com/
-->
<!-- Document type declaration -->
<!DOCTYPE html>
<!-- Language of the HTML document -->
<html lang="en">
<!-- Head element, meta-information container -->
<head>
<!-- Character set -->
<meta charset="UTF-8" />
<!-- Document mode and browser compatibility -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Viewport settings for responsive design -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Description for search engine optimization -->
<meta name="description" content="ByteCoding, coding on computers." />
<!-- Keywords for search engine optimization -->
<meta
name="keywords"
content="coding, code, coders, coding school, html, css"
/>
<!-- Title of the web page -->
<title>ByteCoding</title>
<!-- Favicons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon/favicon-16x16.png"
/>
<!-- External stylesheet -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- End of head element, meta-information container -->
</head>
<!-- Body element, content of the web page -->
<body>
<!-- Header section, semantic element -->
<header>
<!-- Logo with a link to the home page -->
<a href="index.html">
<h1 id="logo">ByteCoding</h1>
</a>
<!-- Navigation toggle for small screens -->
<input type="checkbox" id="nav-toggle" name="nav-toggle" />
<label for="nav-toggle" class="nav-toggle-label">
<!-- Chevron down circle button -->
<i class="fa-solid fa-circle-chevron-down"></i>
</label>
<!-- Navigation, semantic element -->
<nav>
<!-- Unordered list of navigation links -->
<ul id="menu">
<li><a href="index.html">Main</a></li>
<li><a href="programs.html">Programs</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="enroll.html" class="active">Enroll</a></li>
<!-- End of unordered list of navigation links -->
</ul>
<!-- End of navigation, semantic element -->
</nav>
<!-- End of header section, semantic element -->
</header>
<!-- Main content, semantic element -->
<main>
<section id="signup">
<form id="signup-form" method="GET" action="enrolled.html">
<h2>
<i class="fa-solid fa-address-card"></i> Enroll at Bytecoding!
</h2>
<label for="first_name">First Name</label>
<input
type="text"
name="first_name"
id="first_name"
class="text-input"
required
/>
<br />
<label for="last_name">Last Name</label>
<input
type="text"
name="last_name"
id="last_name"
class="text-input"
required
/>
<br />
<label for="email_address">Email Address</label>
<input
type="email"
name="email_address"
id="email_address"
class="text-input"
required
/>
<br />
<p>Coding preference:</p>
<p></p>
<div class="radio-buttons">
<div>
<label for="html">HTML</label>
<input
type="radio"
name="coding_preference"
id="html"
value="html"
required
checked
/>
</div>
<div>
<label for="javascript">Javascript</label>
<input
type="radio"
name="coding_preference"
id="javascript"
value="javascript"
required
/>
</div>
<div>
<label for="python">Python</label>
<input
type="radio"
name="coding_preference"
id="python"
value="python"
required
/>
</div>
</div>
<button type="submit" class="join-button">Let's Code!</button>
</form>
</section>
</main>
<!-- Footer section, semantic element -->
<footer>
<!-- Unordered list of social networks -->
<ul id="social-networks">
<li>
<a
id="facebook-color"
href="https://www.facebook.com/"
target="_blank"
rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"
>
<i class="fa-brands fa-facebook"></i
></a>
</li>
<li>
<a
id="git-color"
href="https://git-scm.com/"
target="_blank"
rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"
>
<i class="fa-brands fa-square-git"></i
></a>
</li>
<li>
<a
id="linkedin-color"
href="https://www.linkedin.com/"
target="_blank"
rel="noopener"
aria-label="Visit our LinkedIn page (opens in a new tab)"
>
<i class="fa-brands fa-linkedin"></i
></a>
</li>
<li>
<a
id="skype-color"
href="https://www.skype.com/"
target="_blank"
rel="noopener"
aria-label="Join our Skype group (opens in a new tab)"
>
<i class="fa-brands fa-skype"></i
></a>
</li>
<li>
<a
id="telegram-color"
href="https://telegram.org/"
target="_blank"
rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"
>
<i class="fa-brands fa-telegram"></i
></a>
</li>
<li>
<a
id="twitter-color"
href="https://www.twitter.com/"
target="_blank"
rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"
>
<i class="fa-brands fa-square-x-twitter"></i
></a>
</li>
<li>
<a
id="whatsapp-color"
href="https://www.whatsapp.com/"
target="_blank"
rel="noopener"
aria-label="Join our WhatsApp group (opens in a new tab)"
>
<i class="fa-brands fa-whatsapp"></i
></a>
</li>
<li>
<a
id="youtube-color"
href="https://www.youtube.com/"
target="_blank"
rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"
>
<i class="fa-brands fa-youtube-square"></i
></a>
</li>
<!-- End of unordered list of social networks -->
</ul>
<!-- End of footer, semantic element -->
</footer>
<!-- Font Awesome kit, owner: Lino Bollansee -->
<script
src="https://kit.fontawesome.com/5846581d05.js"
crossorigin="anonymous"
></script>
<!-- End of body element, content of the web page -->
</body>
<!-- End of HTML element -->
</html>
<!--
IMPORTANT: This project made use of code kindly provided by Code Institute Solutions at:
https://github.com/Code-Institute-Solutions/love-running-v3/tree/main/8.1-testing-and-validation
Images are sourced from https://www.pexels.com/
Icons are sourced from https://fontawesome.com/
Favicons are generated by https://favicon.io/favicon-converter
Literature content by Lino Bollansee enhanced by ChatGPT 3.5 https://chat.openai.com/
-->