-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
87 lines (79 loc) · 2.74 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
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="author" content="Raji abdul">
<meta name="description" content="This is our contact page.">
<title>Madam ChopAM🧆</title>
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="project.css" type="text/css">
</head>
<body>
<header>
<h1>Contact Us</h1>
<hr>
<nav aria-label="primary-navigation">
<ul>
<li>
<a href="index.html">Home Page</a>
</li>
<li>
<a href="index.html#about">About Our Establishment</a>
</li>
<li>
<a href="index.html#menu">Our Menu</a>
</li>
<li>
<a href="hours.html">Open Hours</a>
</li>
</ul>
</nav>
<img src="/img/Burger.jpg" alt="tacos_close_up" width="800" height="600" title="tacos_close_up">
<br>
Our Succulent Amala🧆
<br>
<br>
</header>
<main>
<section>
<form action="https://httpbin.org/get" method="get"></form>
<fieldset>
<legend>Send Us A Message</legend>
<p>
<label for="Name">Name:</label>
<input type="text" name="Name" id="Name" placeholder="Raji" required>
</p>
<p>
<label for="eMail">Name:</label>
<input type="email" name="eMail" id="eMail" placeholder="[email protected]" required>
</p>
<label for="message">Your Message</label>
<br>
<textarea name="message" id="message" cols="30" rows="10"
placeholder="In Darkest night in brightest day no evil shall escape ">
</textarea>
</fieldset>
<br>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</form>
</section>
<section>
<h3>Business Location</h3>
<p><em>Margaritaville Island Reserve Rivers Cancun
Bahia Petempich Puerto Morelos, Mexico
Colonia Morelos, Mexico 77580</em>
<br>
<a href="http://googlemaps.com">Map Location</a>
</p>
<p><b>Phone NO:</b> <a href="tel:++234-0000000">+234-0000000</a></p>
</section>
</main>
<br>
<a href="#">Back to top</a>
<hr>
<footer>
<p>Copyright © Madam ChopAM🧆 </p>
</footer>
</body>
</html>