This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcontact.html
46 lines (42 loc) · 1.76 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
<!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="contact.css">
</head>
<body>
<div class="bimg"><img src="./contactus.jpg" alt="" >
</div> <nav class="navbar background h-nav">
<ul class="nav-list another v-class">
<div class="logo"><img src="./1.jpg" alt="image"></div>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
<div class="rightnav v-class">
<input type="text" name="search" id="search">
<button class="search" aria-placeholder="Enter Text to Search">Search</button>
</div>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<section class="contact" id="contact">
<h2 class="contact1">Contact us</h2>
<div class="form">
<input class="form-input" type="text" name="name" id="name" placeholder="Enter our name">
<input type="number" class="form-input" name="number" id=" number" placeholder="Enter your number">
<input type="email" class="form-input" name="email" id="email" placeholder="Enter your mail">
<textarea class="form-input" name="" id="" cols="150" rows="15"
placeholder="Ellaborate your concern"></textarea>
<br><button class="submit">Submit</button>
</div>
</section>
</body>
</html>