-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
71 lines (58 loc) · 2.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <meta charset="UTF-8">
<meta name="author" content="Sujith">
<meta name="description" content="Contact information of LTS>"> -->
<title>Contact Info</title>
<!-- <link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
-->
</head>
<body>
<header>
<h1>Contact us at:</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#menu">Our Menu</a></li>
<li><a href="hours.html">Hours</a></li>
</ul>
</nav>
<figure>
<img src="stuart.png" alt="Tasty Tacos" title="Do u want this?" width="400" height="267">
<figcaption>Tasty Tacos</figcaption>
</figure>
</header>
<hr>
<form>
<h2>Our Contact Form</h2>
<form action="https://httpbin.org/get" method="get"></form>
<fieldset>
<legend>Send Us A Message</legend>
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="your name" autocomplete ><br><br>
<label for="email">Email:</label>
<input type="text" name="email" id="email" placeholder="your email" autocomplete><br><br>
<label for="your message">Your Message:</label><br>
<textarea name="your message" id="your message" cols="30" rows="10" autofocus></textarea>
</fieldset><br>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</form>
<h3>Our Location</h3>
<address>
342/A,6th cross,7th main,RPC Layout,Vijayanagar,Bengaluru-560104
</address>
<a href="tel:7795255216">Phone Number</a><br>
<a href="mailto:[email protected]"text>Mail id</a><br>
<a href="
https://openstreetmap.org?mlat=14.4484&mlon=79.9888&zoom=19">Location</a>
</main>
<hr>
<footer>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>