forked from rebsoo/tbz-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembership.html
116 lines (88 loc) · 2.67 KB
/
membership.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>THE BOYZ</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="images/logo_header.png" alt="The Boyz Logo"></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="membership.html">Membership</a></li>
<li><a href="songs.html">Songs</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="tamanho-fixo">
<form>
<label for="name">Name</label>
<input type="text" id="name" class="input-classic" required>
<label for="email">Email</label>
<input type="email" id="email" class="input-classic" required placeholder="xxxx@naver.com">
<label for="phone">Phone</label>
<input type="tel" id="phone" class="input-classic" required placeholder="(xx) xxxx-xxxx">
<label for="address">Address</label>
<textarea cols="20" rows="5" id="address" class="input-classic" required></textarea>
<fieldset>
<legend>Shipping Method</legend>
<label for="radio-ems"><input type="radio" value="ems" name="membership" id="radio-ems">EMS</label>
<label for="radio-dhl"><input type="radio" value="dhl" name="membership" id="radio-dhl">DHL</label>
<label for="radio-kpacket"><input type="radio" value="kpacket" name="membership" id="radio-kpacket">Kpacket</label>
</fieldset>
<fieldset>
<legend>Who is your favorite member?</legend>
<select>
<option>Sangyeon</option>
<option>Jacob</option>
<option>Younghoon</option>
<option>Hyunjae</option>
<option>Juyeon</option>
<option>Kevin</option>
<option>New</option>
<option>Q</option>
<option>Haknyeon</option>
<option>Sunwoo</option>
<option>Eric</option>
</select>
</fieldset>
<label><input type="checkbox" class="checkbox"> I agree with all Terms and Conditions</label>
<input type="submit" value="Submit" class="submit">
</form>
<img src="images/fanship.jpg" class="membership-image">
<table>
<thead>
<tr>
<th>Shipping Method</th>
<th>Shipping Time</th>
</tr>
</thead>
<tbody>
<tr>
<td>EMS</td>
<td>3~5 days</td>
</tr>
<tr>
<td>DHL</td>
<td>7~10 days</td>
</tr>
<tr>
<td>Kpacket</td>
<td>15~30 days</td>
</tr>
</tbody>
</table>
</div>
</main>
<footer>
<img src="images/logo_footer.png" alt="The Boyz Logo">
<p class="copyright">© rebsoo /2020</p>
</footer>
</body>
</html>