-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.html
47 lines (47 loc) · 1.61 KB
/
contact-us.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
<!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</title>
<link rel="stylesheet" href="./contact-us.css">
</head>
<body>
<aside class="navbar">
<div class="logo">
<img src="./images/logo-removebg-preview.png" onclick="logo()">
</div>
<div>
<nav >
<ul id="nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./product.html">Product</a></li>
<li><a href="./services.html">Services</a></li>
<li><a href="./contact-us.html">Contacts</a></li>
<li><a href="./loginn.html">Login</a></li>
</ul>
</nav>
</div>
</aside>
<!-- <button class="back"><a href="/index1.html">Back</a></button> -->
<div class="whole">
<div class="main">
<form >
<input type="text" placeholder="your names"><br>
<label>Name</label><br>
<input type="email" placeholder="email"><br>
<label>Email</label><br>
<textarea name="" id="text" cols="24" rows="4"></textarea><br>
<label>Message</label><br>
<button>Let's order</button>
</form>
</div>
</div>
<script>
function logo(){
document.getElementById("nav").style.display="flex";
}
</script>
</body>
</html>