-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
61 lines (57 loc) · 1.76 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
<!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</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<form action="">
<div>
<tr>
<td><label for="fname">First Name:</label></td>
<td><input type="text" name="fname" id="fname" /></td>
</tr>
</div>
<div>
<tr>
<td><label for="last name">Last Name:</label></td>
<td><input type="text" name="last name" id="last name" /></td>
</tr>
</div>
<div>
<tr>
<td><label for="email">Email:</label></td>
<td><input type="email" name="email" id="" />
</td>
</tr>
</div>
<div>
<tr>
<td><input type="submit" value="Submit" /></td>
</tr>
</div>
</form>
<!--Footer starts here-->
<footer>
<p>Victor S. Michael</p>
<p>Get in touch for more service update via these links below and dont forget to smash the subscribe button</p>
<div class="social">
<h4><a href="https://web.facebook.com/oluwasegun.michael.77"><i class="fa-brands fa-facebook"></i>Facebook</a></h4>
<h4><a href="https://www.instagram.com/sheg_reeds/"><i class="fa-brands fa-instagram"></i>Instagram</a></h4>
<h4><a href="https://www.youtube.com/channel/UCdJt5w1INQNAJqHW2vOWJaw"><i class="fa-brands fa-youtube"></i></i>Youtube</a></h4>
<p class="end">CopyRight by Victor S. Michael</p>
</div>
</footer>
</body>
</html>