-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
63 lines (62 loc) · 1.88 KB
/
contactus.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>
<title>Contact us</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body>
<header>
<div class="brand"><img src="/images/3.png" width="70px" alt="" /></div>
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/aboutus.html">About US</a></li>
<li><a href="/contactus.html">Contact US</a></li>
<li><a href="/gallery.html">Gallery</a></li>
</ul>
</nav>
</header>
<div class="main-block">
<form action="/">
<h1>Contact Us</h1>
<div class="info">
<input
class="fname"
type="text"
name="name"
placeholder="Full name"
/>
<input type="text" name="name" placeholder="Email" />
<input type="text" name="name" placeholder="Phone number" />
<input type="text" name="name" placeholder="Website" />
</div>
<p>Message</p>
<div>
<textarea rows="4"></textarea>
</div>
<button type="submit" href="/">Submit</button>
</form>
</div>
<div class="icons">
<a class="contact_icon" href="#" target="_blank">
<img src="images/instagram.png" alt="Instagram" class="insta"
/></a>
<a class="contact_icon" href="#" target="">
<img src="images/twitter.png"
/></a>
<a class="contact_icon" href="#" target="">
<img src="images/542638.png" width="60mm" alt="Gmail" class="mail"
/></a>
<a class="contact_icon" href="#" target="">
<img
src="images/2111774.png"
width="55mm"
alt="Whatsapp"
class="whatsapp"
/></a>
<a class="contact_icon" href="#" target="">
<img src="images/yt.png" width="55mm" alt="Youtube" class="yt"
/></a>
</div>
</body>
</html>