-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
52 lines (42 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<title>About</title>
</head>
<body>
<nav class="w3-bar w3-black">
<a href="/index.html" class="w3-button w3-bar-item">Home</a>
<a href="/about.html" class="w3-button w3-bar-item">About</a>
<a href="/tour.html" class="w3-button w3-bar-item">Tour</a>
<a href="/contact.html" class="w3-button w3-bar-item">Contact</a>
</nav>
<div class="container">
<h1 class="w3-padding-16">Have Some Questions?</h1>
<form action="./about.html">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<input id="country" name="country" type="text" placeholder="Your country of residence">
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
<footer class="w3-container w3-padding-64 w3-center w3-black w3-xlarge">
<a href="https://www.facebook.com/theo.obonye/" target="_blank" ><i class="fa fa-facebook-official"></i></a>
<a href="https://github.com/MrObonye"><i class="fa fa-github" target="_blank" ></i></a>
<a href="https://twitter.com/thatguycodes"><i class="fa fa-twitter" target="_blank" ></i></a>
<a href="https://www.linkedin.com/in/letlhogonolo-theodore-obonye-23727b171/"><i class="fa fa-linkedin" target="_blank" ></i></a>
<p class="w3-medium">
</p>
</footer>
</body>
</html>