-
Notifications
You must be signed in to change notification settings - Fork 0
/
Subscribe.html
92 lines (86 loc) · 2.75 KB
/
Subscribe.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tennis-Hobbies: Subscribe</title>
<style>
body {
background-color: #D9EBEB;
}
body,td,th {
color: #000000;
font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
</style>
</head>
<body>
<section><h1 style="font-size: 80px;">Tennis Hobbies </h1></section>
<nav>
<table>
<tbody>
<tr>
<th scope="col"><a href="Home.html" target="_top">Home </a></th>
<th scope="col"><a href="News.html" target="_top">News </a></th>
<th scope="col"><a href="Subscribe.html" target="_top">Subscribe </a></th>
<th scope="col"><a href="Activities.html" target="_top">Activities </a></th>
<th scope="col"><a href="Shop.html" target="_top">Shop </a></th>
</tr>
</tbody>
</table>
</nav>
<table>
<tbody>
<tr>
<td colspan="1"><h3>Subscribe
</h3></td>
</tr>
<tr>
<td colspan="1"><p>This is the Subsciption page if you would like to get any benefits such as email updates of what has been happening through out the month.
All of the information below will have to be filled out fully for the subscription to be started.
Once all of the information has been provided you will be instantly signed up to recive the curret months updtes.
You will be able to cancel your subscription at any time you would like.
If you would not like to subscribe then you do not have to however you will be mising out on all the latest gossip and changes that may be happening.</p>
<form>
<br>
First name:<br>
<input type="text" name="firstname" value="Mickey">
<br>
Last name:<br>
<input type="text" name="lastname" value="Mouse">
<br>
<label for="male">Male</label>
<input type="radio" name="gender" id="male" value="male"><br>
<label for="female">Female</label>
<input type="radio" name="gender" id="female" value="female"><br>
<label for="other">Other</label>
<input type="radio" name="gender" id="other" value="other"><br><br>
Email:<br>
<input type="text" name="email" value="Email.example@gmail.com">
<br>
County:<br>
<input type="text" name="County" value="Dorset">
<br>
Town:<br>
<input type="text" name="Town" value="Poole">
<br>
Address line1:<br>
<input type="text" name="Adress" value="16 Bournemouth road">
<br>
Date of birth:
<br>
<input type="date">
<br>
Number:
<br>
<input type="number">
<br>
<input type="checkbox" name="Newspaper" value="Newspaper">I want to receive updates via email<br>
<input type="checkbox" name="Email" value="Email">I would like a newspaper sent to me via post
<br>
<input type="submit" value="Submit">
</form> </td>
</tr>
</tbody>
</table>
</body>
</html>