-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmerch.html
More file actions
139 lines (97 loc) · 3.8 KB
/
merch.html
File metadata and controls
139 lines (97 loc) · 3.8 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Brother Wolves | the band</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Berkshire+Swash|Fredoka+One|Comfortaa:400,700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<script type="text/javascript">
alert("Our merch page is under construction, but you can still sign up for our email list!")
</script>
</head>
<body>
<header>
<a href="merch.html" id="logo">
<h1>Brother Wolves</h1>
<h2>the band</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="shows.html">Shows</a></li>
<li><a href="merch.html" class="selected">Merch</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section id="merchorder">
<form action="index.html" method="post">
<h1>Sign Up</h1>
<fieldset class="backEndForm">
<legend><span class="number">1</span> Your Info </legend>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name" tabindex="1"><br>
<label for="email">Email:</label>
<input type="email" id="email" name="user_email" tabindex="2"><br>
<label for="howl">Howl:</label>
<input type="text" id="howl" name="user_howl" tabindex="3"><br>
</fieldset>
<fieldset class="backEndForm">
<legend><span class="number">2</span> Tell us a story! </legend>
<label for="bio">Bio:</label>
<textarea id="bio" name="user_bio" tabindex="4"></textarea>
</fieldset>
<button type="submit" tabindex="5">Submit</button>
</form>
<section>
<ul id="home">
<li>
<a href="img/IMGtreehouse2.jpg" alt="Studio">
<img src="img/IMGtreehouse2.jpg" alt="Studio" id="home"></a>
</li>
</ul>
</section>
<section id="merchorder">
<form action="index.html" method="post">
<h1>Buy some stuff!</h1>
<fieldset>
<legend><span class="number"></span> </legend>
<label for="tshirts">T-Shirts</label>
<input type="checkbox" id="tshirt" name="user_tshirt" tabindex="6"><br>
<label for="cds">CDs</label>
<input type="checkbox" id="cds" name="user_cds" tabindex="7"><br>
<label for="stickers">Stickers</label>
<input type="checkbox" id="stickers" name="user_stickers" tabindex="8"><br>
</fieldset>
<button type="submit" tabindex="9">Submit</button>
<fieldset class="backEndForm">
<legend><span class="number"></span> Tell us what you want! </legend>
<label for="ideas"></label>
<textarea id="ideas" name="user_ideas" tabindex="10"></textarea>
</fieldset>
<button type="submit" tabindex="11">Submit</button>
</form>
</section>
<section>
<ul id="home">
<li>
<a href="img/IMGtreehouse.jpg" alt="Studio">
<img src="img/IMGtreehouse.jpg" alt="Studio" id="home"></a>
</li>
</ul>
</section>
</div>
<div>
<footer id="footer">
<a href="http://facebook.com/brotherwolveshowl"><img src="img/facebook-logo.png" alt="Facebook Logo" class="socialIcon"></a>
<a href="http://twitter.com/brotherwolves"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="socialIcon"></a>
<a href="http://instagram.com/brotherwolves"><img src="img/instagram.png" alt="Instagram Logo" class="socialIcon"></a>
<p>© 2015 Brother Wolves</p>
</footer>
</div>
</body>
</html>