-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (90 loc) · 4.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;600&display=swap" rel="stylesheet">
<title>Ryans Registration</title>
</head>
<body>
<header>
<div class="header">
<h1><span class="header">THE CODE REVIEW</span></h1>
</div>
</header>
<main>
<div class="news-header">
<h1>Sign Up for Our Newsletter</h1>
<p>Get the latest news on how your code is doing right in your inbox </p>
</div>
<div class="container">
<form>
<fieldset>
<legend>Contact Information</legend>
<div class="contact">
<label for="name">Full Name</label>
<input type="text" id="name" name="user-name" placeholder="Required">
</div>
<div class="contact">
<label for="email">Email Address</label>
<input type="email" name="user-email" id="email" placeholder="Required">
</div>
<div class="contact">
<label for="phone">Phone Number</label>
<input type="tel" name="user-phone" id="phone">
</div>
<div class="contact">
<label for="address">Street Address</label>
<input type="text" name="user-address" id="address">
</div>
<div class="contact">
<label for="city">City</label>
<input type="text" name="user-city" id="city">
</div>
<div class="contact">
<label for="state">State</label>
<select class="form-control" name="user-state" id="state">
<option value="CS">Choose State</option>
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
</select>
</div>
<div class="contact">
<label for="zip">Zip Code</label>
<input type="text" name="user-zip" id="zip">
</div>
</fieldset>
<div class="newsletter">
<fieldset>
<legend>Newsletter</legend>
<p>Select the newsletters that you would like to receive</p>
<input type="checkbox" class="htmlchk" name="check-news" id="htmlchk">
<label for="htmlchk" class="letter">HTML News</label><br>
<input type="checkbox" class="css" name="check-news" id="css">
<label for="css" class="letter">CSS News</label><br>
<input type="checkbox" class="js" name="check-news" id="js">
<label for="js" class="letter">JavaScript News</label>
<p>Newsletter format</p>
<input type="radio" class="htmlrad" name="radio-format" id="htmlrad">
<label for="htmlrad" class="format">HTML</label><br>
<input type="radio" class="pt" name="radio-format" id="pt">
<label for="pt" class="format">Plain Text</label><br>
<div class="comment">
<label for="other-topics">Other topics you'd like to hear about</label>
<textarea name="other-topics" id="other-topics" cols="30" rows="6"></textarea>
<button type="submit">Sign Up</button>
</div>
</fieldset>
</div>
</form>
<footer>
<p>Copyright The Code Review</p>
</footer>
</div>
</main>
</body>
</html>