-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
78 lines (75 loc) · 3.18 KB
/
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
<!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="....">
<meta name="keywords" content="....">
<meta name="author" content="...">
<title>Form</title>
<link rel="stylesheet" href="./assets/styles/form_style.css">
</head>
<body>
<header>
<div id="logo">
<a href="./index.html" aria-label="Name of the site">
<h1>concrete houses</h1>
</a>
</div>
<nav id="navbar">
<ul>
<a href="./index.html" aria-label="Home page">
<li>Home</li>
</a>
<a href="./gallery.html" aria-label="Photos page">
<li>Gallery</li>
</a>
<a href="./form.html" aria-label="Form page">
<li class="nav-button-active">Form</li>
</a>
</ul>
</nav>
</header>
<main>
<form method="post" action="" class="signup-form">
<h2>Let's get you signed up! <i class="fas fa-heartbeat"></i>
</h2>
<label for="fname">First Name</label>
<input class="text-input" id="fname" type="text" name="first_name" required>
<label for="lname">Last Name</label>
<input class="text-input" id="lname" type="text" name="last_name" required>
<label for="email">Email Address</label>
<input class="text-input" id="email" type="email" name="email_address" required>
<label for="road">Road</label>
<input id="road" type="radio" name="running_preference" value="road" required>
<label for="trail">Trail</label>
<input id="trail" type="radio" name="running_preference" value="trail">
<label for="both">Both</label>
<input id="both" type="radio" name="running_preference" value="both">
<input class="join-button" type="submit" value="Let's Run!">
</form>
</main>
<footer>
<ul class="social-networks">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener" aria-label="Visit our facebook">
<i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener" aria-label="Visit our twitter">
<i class="fa-brands fa-twitter"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener" aria-label="Visit our youtube">
<i class="fa-brands fa-youtube"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener" aria-label="Visit our instagram">
<i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
</footer>
<script src="https://kit.fontawesome.com/8a966a517d.js" crossorigin="anonymous"></script>
</body>
</html>