-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_us.htm
87 lines (83 loc) · 3.56 KB
/
contact_us.htm
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="mobile.css" media="screen and (max-width: 1109px)">
<link rel="stylesheet" href="smaller_mobile.css" media="screen and (max-width: 637px)">
<link rel="stylesheet" href="android.css" media="screen and (max-width: 540px)">
</head>
<body>
<section>
<nav class="navbar">
<img src="./imag/LOGo.png" alt="" class="logo">
<!-- <img src="Untitled-1.png" alt="" class="logo"> -->
<ul class="nav-links">
<li class="active"><a href="index.html">Home</a</li>
<li><a href="menu.htm">Menu</a></li>
<li><a href="location.htm">Locations</a></li>
<li><a href="Voucher.htm">Gift Vouchers</a></li>
<a href="contact_us.htm"class="cta"><button class="contact">Contact</button></a>
</ul>
</nav>
<div class="container">
<h3>Contact Form</h3>
<form action="#" name="contact_form">
<label for="first_name">First Name</label>
<input name="first_name" type="text" required placeholder="John"/>
<br>
<label for="last_name">Last Name</label>
<input name="last_name" type="text" required placeholder="Doe"/>
<br>
<label for="email">Email</label>
<input name="email" type="email" required placeholder="you@domain.com"/>
<br>
<label for="message">Message</label><br>
<textarea name="message" cols="30" rows="10" placeholder="Enter your message here ..." required> </textarea>
<div class="center">
<input type="submit" value="Submit">
</div>
</form>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="inner">
<div class="column is-logo">
<a href="index.html" class="main-logo">
<div class="logo">
<img src="./imag/Asset 11.png" id="hataueslai" alt="stackfindover">
</div>
<div class="logo-info">
<div class="text">Kathmandu Koffee Klatch</div>
<span class="copyright">© 2021. All rights reserved.</span>
</div>
</a>
</div>
<div class="column is-nav">
<div class="column-title">Navigation</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="menu.htm">Menu</a></li>
<li><a href="contact_us.htm">Contact Us</a></li>
</ul>
</div>
<div class="column is-nav">
<div class="column-title">Contact</div>
<ul>
<li><a href="#"><i class="fa fa-envelope-open"></i>kkk@gmail.com</a></li>
<li><a href="#"><i class="fa fa-twitter"></i>@twtktmklatch</a></li>
<li><a href="#"><i class="fa fa-linkedin"></i>@linkedktmkatch</a></li><br>
</ul>
<div class="column is-nav">
<div class="column-title">Location</div>
<ul>
<li><a href="#">Patan Durbar Square</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>