-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (133 loc) · 4.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Online Registration Form</title>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@700&family=Merriweather:ital,wght@0,300;0,400;1,300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="no" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>The Code Review</h1>
</header>
<div class="intro">
<h2>Signup for our newsletter</h2>
<p>Get the latest news on how your code is going right in your inbox</p>
</div>
<div class="container">
<form action="/" method="post">
<fieldset class="contact-info">
<legend>Contact Information</legend>
<div class="wrapper">
<div class="information">
<label for="fullname" class="label-01">Full Name</label>
<input
type="text"
id="fullname"
name="user_fullname"
placeholder="Required"
required
/>
</div>
<div class="information">
<label for="mail">Email Address</label>
<input
type="email"
id="mail"
name="user_email"
placeholder="Required"
required
/>
</div>
<div class="information">
<label for="number">Phone Number</label>
<input
type="tel"
id="number"
name="user_number"
placeholder="+971"
/>
</div>
<div class="information">
<label for="street_address">Street Address</label>
<input type="text" id="street_address" name="user_address" />
</div>
<div class="information">
<label for="city">City</label>
<input type="text" id="city" name="user_city" />
</div>
<div class="information">
<label for="state">State</label>
<select id="state" name="user_state">
<option value="" disabled selected hidden
>Please Choose...</option
>
<option value="Abu_dhabi">Abu-Dhabi</option>
<option value="Dubai">Dubai</option>
<option value="Sharjah">Sharjah</option>
<option value="Ajman">Ajman</option>
<option value="Umm-Al-Quwain">Umm-Al-Quwain</option>
<option value="Ras-Al-Khaimah">Ras-Al-Khaimah</option>
<option value="Fujairah">Fujairah</option>
</select>
</div>
<div class="code">
<label for="code">Zip Code</label>
<input type="text" id="code" name="user_zipcode" />
</div>
</div>
</fieldset>
<fieldset class="news">
<legend>Newsletter</legend>
<label>Select the newsletter you would like to receive</label>
<input
type="checkbox"
id="html_news"
value="receive_html_news"
name="user_receive"
/><label class="light" for="html_news">HTML News</label><br /><br />
<input
type="checkbox"
id="css_news"
value="receive_css_news"
name="user_receive"
/><label class="light" for="css_news">CSS News</label><br /><br />
<input
type="checkbox"
id="javascript_news"
value="receive_javascript_news"
name="user_receive"
/><label class="light" for="javascript_news">Javascript News</label>
<div class="news_format">
<label>Newsletter format</label>
<input
type="radio"
id="html_format"
value="html_newsletter_format"
name="user_newsletter_format"
/><label class="light" for="html_format">HTML</label><br /><br />
<input
type="radio"
id="plain_text"
value="plain_text_format"
name="user_newsletter_format"
/><label class="light" for="plain_text">Plain text</label>
</div>
<label for="topics">Other topics you'd like to hear about</label>
<textarea id="topics" name="topics_to_hear"></textarea>
</fieldset>
<button type="submit" class="btn">Sign Up</button>
</form>
<!-- end of form section -->
</div>
<!-- end of form container -->
<footer>
<em>Copyright The Code Review</em>
</footer>
</body>
</html>