-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
66 lines (53 loc) · 2.02 KB
/
Copy pathjoin.html
File metadata and controls
66 lines (53 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<title>Home</title>
</head>
<body>
<header>
<a href="index.html" class="logo">Toolshed</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="join.html">Join</a></li>
</ul>
</nav>
</header>
<main>
<h1 class="join-photo">Join the Team</h1>
<div class="form-join">
<label for="nameFrist">First Name:</label>
<input type="text" id="nameFirst" name="First" placeholder="Joe">
<label for="nameLast">Last Name:</label>
<input type="text" id="nameLast" name="Last" placeholder="Smith">
<label for="email">Email Address:</label>
<input type="email" id="email" name="Email" placeholder="joesmith@gmail.com">
<label for="address">Address:</label>
<textarea id="address" name="Address" placeholder="Enter your address here."></textarea>
<label for="select">What is your skill level:</label>
<select id="select" name="skillLevel">
<option disabled hidden selected>Please Select</option>
<option>Beginner</option>
<option>Intermediate</option>
<option>Expert</option>
</select>
<input type="submit" class="button-submit">
</div>
</main>
<footer>
<p>Toolshed</p>
<nav>
<ul>
<li><a href="https://www.google.com">Google</a></li>
<li><a href="https://www.google.com">Google</a></li>
<li><a href="https://www.google.com">Google</a></li>
</ul>
</nav>
<p>©2020 Alec Hudson</p>
</footer>
</body>
</html>