-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
66 lines (63 loc) · 1.83 KB
/
contact.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My contact Information</title>
<style>
body{background-color: tan;}
hr{
border-style: none;
border-top-style: dotted;
border-color: grey;
border-width: 5px;
width: 5%;
}
img{
height: auto;
}
</style>
</head>
<body>
<h1>This is My Contact Information</h1>
<strong><p>My names is Collins Adoghe</p>
<p>My Address is Stationsvagen 3, 82176, Vallsta, Bollnas.</p>
<p>My Email Address is [email protected]</p>
<p>www.collinsbook.com</p></strong>
<hr class="3">
<h3>Contact Us Today</h3>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<table>
<tr>
<td><label>Your Name:</label></td>
<td><input type="text" name="your names" value=""></td>
</tr>
<tr>
<td><label>Your Email:</label></td>
<td><input type="email" name="your emails" value=""></td>
</tr>
<tr>
<td><label>File in pdf format:</label></td>
<td><input type="file" name="your files" value=""></td>
</tr>
<tr>
<td><label>Date of Birth:</label></td>
<td><input type="date" name="Date of birth" value=""></td>
</tr>
<tr>
<td><label>Your message:</label></td>
<td><textarea name="your message" rows="10" cols="40"></textarea></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name=""></td>
</tr>
</table>
</form>
<hr>
<p>
<a href="index.html">My Home</a>
<a href="hobby.html">My Hobbies</a>
<a href="contact.html">My Contact Informations</a>
</p>
</body>
</html>