-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
39 lines (39 loc) · 1.37 KB
/
contact.html
File metadata and controls
39 lines (39 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/index.css">
<title>Contact</title>
</head>
<body>
<header>
<h1>Contact Us</h1>
<nav class="navBar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="product.html" class="hvr-foward">Product</a>
<a href="https://safe-routes-bw.netlify.com/" class="login">Login</a>
</nav>
</header>
<div class="container home">
<img class="contactImage" src="images/contactus-desktop.jpg" alt="concrete roads">
</div>
<div class="container form-class">
<form name="inputForm" class="infoForm">
<label for="name">Name</label>
<input type="text" name="name" id="name" value="Your Name"><br>
<label for="email">Email</label>
<input type="email" name="email" id="email" value="Your Email"><br>
<label for="textbox">Enter Message</label><br>
<textarea rows="8" cols="50" placeholder="Enter Message" form="inputForm"></textarea><br>
<button type="submit">Submit</button>
</form>
</div>
<footer>
<p>Copyright 2019 Safe Routes</p>
</footer>
</body>
</html>