-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.html
110 lines (86 loc) · 1.85 KB
/
footer.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Naamloos document</title>
</head>
<style>
#footer {
background-color: #3a3a3a;
border-style: solid;
background:#1F150C;
margin-bottom: -3%;
margin-top: 10%;
width: 102%;
margin-left: -1%;
color: white;
}
#footer p {
font-family: 'Oswald', sans-serif;
color: white;
text-align: center;
margin-top: 100px;
margin-left: -50%;}
#emailform{
margin-top: -5%;
margin-left: 60%;
font-family: 'Oswald', sans-serif;
}
</style>
<body>
<div class="footer" >
<p>Copyright © 2009 - 2018 - All Rights Reserved - Ritalin Drinks</p>
<div id="emailform">
<form name="contactform" method="post" >
<table width="450px">
<tr>
<td valign="top">
<label for="first_name">First Name *</label>
</td>
<td valign="top">
<input type="text" name="first_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="last_name">Last Name *</label>
</td>
<td valign="top">
<input type="text" name="last_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="email">Email Address *</label>
</td>
<td valign="top">
<input type="text" name="email" maxlength="80" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="telephone">Telephone Number</label>
</td>
<td valign="top">
<input type="text" name="telephone" maxlength="30" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="comments">Comments *</label>
</td>
<td valign="top">
<textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
</div>
</div>
</body>
</html>