-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactUs.html
32 lines (29 loc) · 954 Bytes
/
contactUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RKN - contact us</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="logo/fav2.jpg">
</head>
<body>
<table>
<tr>
<td><a href="index.html"><img src="logo/RKN_logo3.png" alt="RKN logo"></a></td>
<td><h3>Contact Us</h3></td>
</tr>
</table>
<p>Sign-up for the brochure and news on latest products</p>
<form action="mailto:[email protected]" enctype="text/plain">
<label for="">Name: </label>
<input type="text" name=""><br>
<label for="">e-mail: </label>
<input type="email" name=""><br>
<label for="">D.O.B: </label>
<input type="Date"><br>
<label for="">Anything you want to tell us</label><br>
<textarea name="" id="" cols="30" rows="10"></textarea><br>
<input type="submit">
</form>
</body>
</html>