forked from Thilina-Pathirage/construction_site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
63 lines (54 loc) · 2.35 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
62
63
<!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">
<link rel="stylesheet" type="text/css" href="./css/common.css">
<link rel="stylesheet" type="text/css" href="./css/contact.css">
<link href="http://fonts.cdnfonts.com/css/poppins" rel="stylesheet">
<title>Contact Us</title>
</head>
<body>
<div class="navbar">
<div class="container">
<a class="navLogo" href="index.html">
<img width="60px" alt="Logo image" src="./images/logo.png"/>
</a>
<ul class="navbarItems">
<li class="navItem"><a class="navLink" href="./index.html">Home</a></li>
<li class="navItem"><a class="navLink" href="./about.html">About</a></li>
<li class="navItem"><a class="navLink" href="./projects.html">Projects</a></li>
<li class="navItem"><a class="navLink active" href="./contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="row">
<div class="contactHeadingLanding">
<h1 class="contactLandingHeading">Contact Us</h1>
<div class="contactFormBlock">
<form class="contactForm">
<label for="name" class="inputLable">Enter Your Name</label> <br/>
<input type="text" class="inputField"/><br/>
<label for="name" class="inputLable">Enter Your Email</label> <br/>
<input type="text" class="inputField"/><br/>
<label for="name" class="inputLable">Enter Your Message</label> <br/>
<textarea class="inputFieldMsg">
</textarea>
</form>
</div>
<button class="contactUsBtn" onclick="document.location='contact.html'">Submit</button>
</div>
<div class="contactBlockImage">
<img height="560vw" alt="Construction building" src="./images/ContactUs.png"/>
</div>
</div>
</div>
<div class="footer">
<p class="ccPara">
All Rights Reserved! ©
</p>
</div>
</body>
</html>