-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
179 lines (167 loc) · 8.64 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Online Registration Form</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts-->
<link href='https://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css'>
<!-- Stylesheets-->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/vertical-rythm.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="seven columns offset-by-two">
<h1>The code review</h1>
</div>
</div>
</div>
</header>
<div class="container">
<div class="header-form">
<h2>Signup for our newsletter</h2>
<p>Get the latest news on how your code is doing right in your inbox</p>
</div>
<form>
<fieldset class="contact clearfix">
<legend>Contact Information</legend>
<div class="label-col float-left">
<label for="name">Full Name:</label>
</div>
<div class="input-col float-left">
<input class="full-width" type="text" id="name" name="user_name" required="required" placeholder="Required" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Required'" />
</div>
<div class="label-col float-left">
<label for="mail">Email Address:</label>
</div>
<div class="input-col float-left">
<input class="full-width" type="email" id="mail" name="user_email" required="required" placeholder="Required" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Required'" />
</div>
<div class="label-col float-left">
<label for="phone">Phone Number:</label>
</div>
<div class="input-col float-left">
<input class="full-width" type="tel" id="phone" name="user_phone">
</div>
<div class="label-col float-left">
<label for="street">Street Address:</label>
</div>
<div class="input-col float-left">
<input class="full-width" type="text" id="street" name="user_street">
</div>
<div class="label-col float-left">
<label for="city">City:</label>
</div>
<div class="input-col float-left">
<input class="full-width" type="text" id="city" name="user_city">
</div>
<div class="label-col float-left">
<label for="state">State:</label>
</div>
<div class="input-col float-left">
<select class="full-width" id="state" name="user_state" size="1">
<option value="" disabled selected hidden>Choose State</option>
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
<option value="AZ">Arizona</option>
<option value="AR">Arkansas</option>
<option value="CA">California</option>
<option value="CO">Colorado</option>
<option value="CT">Connecticut</option>
<option value="DE">Delaware</option>
<option value="DC">District Of Columbia</option>
<option value="FL">Florida</option>
<option value="GA">Georgia</option>
<option value="HI">Hawaii</option>
<option value="ID">Idaho</option>
<option value="IL">Illinois</option>
<option value="IN">Indiana</option>
<option value="IA">Iowa</option>
<option value="KS">Kansas</option>
<option value="KY">Kentucky</option>
<option value="LA">Louisiana</option>
<option value="ME">Maine</option>
<option value="MD">Maryland</option>
<option value="MA">Massachusetts</option>
<option value="MI">Michigan</option>
<option value="MN">Minnesota</option>
<option value="MS">Mississippi</option>
<option value="MO">Missouri</option>
<option value="MT">Montana</option>
<option value="NE">Nebraska</option>
<option value="NV">Nevada</option>
<option value="NH">New Hampshire</option>
<option value="NJ">New Jersey</option>
<option value="NM">New Mexico</option>
<option value="NY">New York</option>
<option value="NC">North Carolina</option>
<option value="ND">North Dakota</option>
<option value="OH">Ohio</option>
<option value="OK">Oklahoma</option>
<option value="OR">Oregon</option>
<option value="PA">Pennsylvania</option>
<option value="RI">Rhode Island</option>
<option value="SC">South Carolina</option>
<option value="SD">South Dakota</option>
<option value="TN">Tennessee</option>
<option value="TX">Texas</option>
<option value="UT">Utah</option>
<option value="VT">Vermont</option>
<option value="VA">Virginia</option>
<option value="WA">Washington</option>
<option value="WV">West Virginia</option>
<option value="WI">Wisconsin</option>
<option value="WY">Wyoming</option>
</select>
</div>
<div class="label-col float-left">
<label for="zip">Zip Code:</label>
</div>
<div class="input-col float-left">
<input class="full-width " type="text" id="zip" name="user_zip">
</div>
</fieldset>
<fieldset class="newsletter">
<legend>Newsletter</legend>
<div class="checkboxes">
<label>Select the newsletter you would like to recieve</label>
<br>
<input class="checkbox-custom" type="checkbox" id="html" name="user_news_html" value="newsletter_type" checked="checked">
<label class="checkbox-custom-label" for="html">HTML News</label>
<br />
<input class="checkbox-custom" type="checkbox" id="css" name="user_news_css" value="newsletter_type">
<label class="checkbox-custom-label" for="css">CSS News</label>
<br />
<input class="checkbox-custom" type="checkbox" id="javascript" name="user_news_javascript" value="newsletter_type">
<label class="checkbox-custom-label" for="javascript">JavaScipt News</label>
<br />
</div>
<div class="radio-buttons">
<label>Newsletter format</label>
<br />
<input class="radio-custom" type="radio" id="html_format" name="user_format" value="newsletter_html" checked>
<label class="radio-custom-label" for="html_format">HTML</label>
<br />
<input class="radio-custom" type="radio" id="plain_format" name="user_format" value="newsletter_plain">
<label class="radio-custom-label" for="plain_format">Plain text</label>
<br />
<br>
</div>
<label for="other_topics">Other topics you would like to hear about</label>
<br>
<textarea class="full-width" id="other_topics" name="user_topics"></textarea>
<button class="full-width" type="submit">Sign Up</button>
<p>Copyright Samuel Lopez</p>
</fieldset>
</form>
<!-- /form -->
</div>
<!-- /container -->
</body>
</html>