-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-me.html
More file actions
42 lines (37 loc) · 1.01 KB
/
contact-me.html
File metadata and controls
42 lines (37 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact me page</title>
</head>
<body>
<h1>Contact me</h1>
<table cellspacing="10">
<tr>
<td>Name</td>
<td>Calvin Mazhindu</td>
</tr>
<tr>
<td>Email</td>
<td>myemail.hotmail.com</td>
</tr>
<tr>
<td>Phone number</td>
<td>07758978652</td>
</tr>
</table>
<form>
<label>Your Name:</label>
<input type="text" name="" value=""><br>
<label>Your Email</label>
<input type="email" name="" value=""><br>
<label>Your Message</label><br>
<textarea name="" rows="10" cols="30"></textarea>
<input type="password" name="" value="">
<input type="submit" name="">
</form>
<a href="index.html">Homepage</a>
</body>
</html>