forked from kelbymittan/chris-cornell-tribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfans.html
90 lines (70 loc) · 2.93 KB
/
fans.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
<!DOCTYPE html>
<html>
<head>
<title>Chris Cornell Tribute</title>
<link href="css/style.css" rel="stylesheet">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Cinzel|Old+Standard+TT:700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=ZCOOL+QingKe+HuangYou" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Righteous|ZCOOL+QingKe+HuangYou" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
</head>
<body>
<nav>
<ul>
<li><a href="index.html"> Home</a></li>
<li><a href="discography.html">Discography</a></li>
<li><a href="tribute.html">Tribute</a></li>
<li><a href="fans.html">Fans</a></li>
</ul>
</nav>
<br>
<section id="signup">
<article id="fanimg">
</article>
<article id="a1">
<h1>Join Fan Club</h1> <br>
<form action="#" method="post">
<h2>First Name:</h2><br>
<input type="text" required name="first-name" placeholder="First Name"> <br>
<h2 class=a2>Last Name:</h2> <br>
<input type="text" required name="last-name" placeholder="Last Name"> <br>
<h2 class=a2>email:</h2> <br>
<input type="email" required name="email" placeholder="Email"> <br>
<h2>Password:</h2> <br>
<input type="password" required name="password" placeholder="password"> <br>
<h2>Birthday:</h2> <br>
<input type="date" name="birthday"> <br>
<h2>Bands:</h2> <br>
<p class="banddds">
<label class="checkboxContainer">
<input type="checkbox" name="band" value="soundgarden">
<span class="checkmark"></span>
Soundgarden
</label>
<br>
<label class="checkboxContainer">
<input type="checkbox" name="band" value="audioslave">
<span class="checkmark"></span>
Audioslave
</label>
<br>
<label class="checkboxContainer">
<input type="checkbox" name="band" value="templeofthedog">
<span class="checkmark"></span>
Temple of the Dog
</label>
<br>
<label class="checkboxContainer">
<input type="checkbox" name="band" value="solo">
<span class="checkmark"></span>
Chris Cornell Solo
</label>
</p>
<br>
<input type="submit" value="submit">
</form>
</article>
</section>
</body>
</html>