-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
51 lines (39 loc) · 1.59 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
<!doctype html>
<html>
<head>
<title>Contact</title>
<meta name="description" content="Contact">
<link rel="stylesheet" href="./css/contact.css">
</head>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class = "topnav">
<a class="#home" href="./test.html"><i class="fa fa-fw fa-home"></i> Home</a>
<a href="./contact.html"><i class="fa fa-fw fa-envelope"></i> Contact</a>
<a href="./about.html"><i class="fa fa-fw fa-info"></i> About</a>
</div>
<h1>Contact Page</h1>
<h3>Contact Information Below</h3>
<div class="container" style="width: 400px">
<form action="action_page.php">
<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>
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
<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> <br>
Brett Tech Coding <br> <br>
<a href="test.html">Home</a> | <a href="contact.html">Contact</a> |<a href="about.html">About</a> <br><br>
</footer>
</body>
</html>