-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
48 lines (44 loc) · 1.78 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
<!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 US</title>
<link rel="stylesheet" href="./css/app.css ">
<link rel="stylesheet" href="./css/contact.css">
</head>
<body>
<nav class="navbar" id="navbar" style="position: relative;">
<ul class="menu-content container">
<li class="app-title">App Title</li>
<li>
<ul class="menu-items">
<li><a href="./">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="#" class="active">Contact Us</a></li>
<li><a href="./login.html">Login</a></li>
</ul>
</li>
</ul>
</nav>
<main>
<form action="" class="cont">
<h1>Send Us A Message</h1>
<input type="text" name="firstname" placeholder="First Name">
<input type="text" name="lastname" placeholder="Last Name">
<input type="text" name="company" placeholder="Company">
<input type="text" name="title" placeholder="Title">
<input type="tel" name="phone" placeholder="phone">
<input type="email" name="email" placeholder="Email">
<input type="text" class="fulltext" name="purpose" placeholder="Purpose of inquery">
<textarea name="summary" cols="30" rows="10" placeholder="What can we help you with?"></textarea>
<div class="submit">
<input type="submit" value="SUBMIT">
</div>
</form>
</main>
<script src="./js/app.js"></script>
</body>
</html>