-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.html
53 lines (53 loc) · 1.38 KB
/
store.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Store</title>
</head>
<header>
<h5>
<a href="index.html">HOME</a>
<a href="discography.html">DISCOGRAPHY</a>
<a href="videos.html">VIDEOS</a>
<a href="store.html">STORE</a>
<a href="contact-me.html">CONTACT ME</a>
THE HARRIS CODE
</h5>
</header>
<body>
<h1>Store</h1>
<form action="index.html">
<label>First Name:</label>
<input type="text" required>
<br>
<label>Last Name:</label>
<input type="text">
<p>Would you like to subscribe to Rah SZN?</p>
<label>Yes</label>
<input type="radio" name="rah_season">
<label>No</label>
<input type="radio" name="rah_season">
<br>
<label>Birthday</label>
<input type="date">
<br>
<p>Which edition would you like?</p>
<input type="checkbox">
<label>Standard Edition</label>
<br>
<input type="checkbox">
<label>Premium Edition</label>
<br>
<input type="checkbox">
<label>Deluxe Edition</label>
<br>
<input type="checkbox">
<label>All-White Edition</label>
<br>
<input type="checkbox">
<label>All-Black Edition</label>
<br>
<input type="submit">
</form>
</body>
</html>