-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
96 lines (89 loc) · 3.17 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
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<title>Good Food Hut</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link href="style.css" rel="stylesheet" />
<script src="utility-functions.js"></script>
</head>
<body class="m-4 p-4">
<header>
<img
width="100%"
alt="fried seafood platter"
src="https://cdn.glitch.global/cbca519c-2e2c-44e5-a058-374e1c8be1a2/Screenshot%202024-08-03%20021209.jpg?v=1722669203847"
/>
<nav class="nav nav-fill nav-pills">
<a class="nav-link" href="index.html">HOME</a>
<a class="nav-link" href="about.html">ABOUT</a>
<a class="nav-link" href="menus.html">MENU</a>
<a class="nav-link" href="photos.html">PHOTOS</a>
<a class="nav-link active" href="contact.html">CONTACT</a>
</nav>
</header>
<main id="mainTag" class="m-3">
<h1 class="p-6 m-5">Contact Us!</h1>
<form
style="padding: 10px"
class="text-center border border-5 border-dotted border-primary"
>
<h5>Rate your food experience</h5>
<input id="never again" type="radio" name="emoji" />
<label>🤢Hated it!</label><br />
<input id="disliked" type="radio" name="emoji" />
<label>😓Disliked it.</label><br />
<input id="okay" type="radio" name="emoji" />
<label>😔Meh...it was just okay.</label><br />
<input id="liked" type="radio" name="emoji" />
<label>😋Liked it.</label><br />
<input id="loved" type="radio" name="emoji" />
<label>😍 Loved it!</label><br />
</form>
<p class="p-6 m-5 fw-bold text-center">
We love hearing from our customers. Please feel free to leave a rating,
comments, suggestions, or ask any inquiries in the form below. Thank you
in advance. We look forward to serving you again soon.
</p>
<br />
<form>
<label for="name">Name:</label><br />
<input type="text" id="name" /><br />
<label for="email">Email:</label><br />
<input type="text" id="email" /><br />
<label for="message">Message:</label><br />
<textarea id="message"></textarea><br />
<button
onclick="output('We have received your message!')"
class="btn btn-sm rounded-5 bg-primary"
>
Submit</button
><br />
</form>
<div id="outputTag"></div>
</main>
<hr />
<footer class="text-center fs-6">
<br />
<br />
Good Food Hut❃12345 Big Bird Ave, Sesame Street, LA 12345 ❃
337-555-5432❃<br />
<h6>Website Created by RaylonJMG 2024</h6>
</footer>
<script>
// function submit(num){
// if (num == 1) {
// const message1 = "<p>We have recieved your message!</p>"
// outputTag.innerHTML += message1;
// } else {
// const message1 = "<p>Oops! Try again.</p>"
// outputTag.innerHTML += message1;
// }
// }
</script>
</body>
</html>