-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
91 lines (84 loc) · 4.92 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
<!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>
<script src="contact.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" aria-current="page" href="contact.html">CONTACT</a>
</nav>
</header>
<main id="mainTag" class="m-3">
<h1>Contact Us!</h1>
<hr>
<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>
<form style="padding: 10px" class="text-center border border-5 border-dotted border-dark">
<section id="radio-buttons">
<h5>Rate your food experience</h5>
<input id="hated it" type="radio" name="rating" />
<label for="hated it">🤢Hated it!</label><br />
<input id="disliked" type="radio" name="rating" />
<label for="disliked">😓Disliked it.</label><br />
<input id="okay" type="radio" name="rating" />
<label for="okay">😔Meh...it was just okay.</label><br />
<input id="liked" type="radio" name="rating" />
<label for="liked">😋Liked it.</label><br />
<input id="loved" type="radio" name="rating" />
<label for="loved">😍 Loved it!</label><br />
<button onclick="handleRating()" class="btn btn-sm rounded-3 bg-primary" id="mixin-button">Submit Rating</button>
</section>
</form>
<hr>
<form onsubmit="handleSubmit(event)">
<label for="fullName">Full Name:</label><br>
<input type="text" id="fullName" placeholder="Enter First & Last Name"><br>
<label for="email">Email Address:</label><br>
<input type="email" id="email" placeholder="Enter Email Address" required><br>
<label for="message">Message:</label><br>
<textarea id="message"></textarea><br>
<input type="submit" value="Submit Message" class="btn btn-sm rounded-3 bg-primary" id="mixin-button">
</form>
<hr>
<div class="bg-image size opacity border border-5 border-groove">
<p class="fw-bold text-center fs-4">Looking to eat Good Food at your next family, corporate, or festival event?</p>
<p class="text-center fs-5 fw-bold">We offer catering services for events of any size!<br> Schedule a phone appointment today to book with our <b>Good Food Hosts</b>.</p>
</div>
<hr>
<form onsubmit="processForm(event)">
<label for="firstName"> First Name:</label><br />
<input required name="firstName" type="text" id="firstName" placeholder="Enter First Name" /><br />
<label for="lastName"> Last Name:</label><br />
<input required name="lastName" type="text" id="lastName" placeholder="Enter Last Name" /><br />
<label for="calendar">Phone Appointment:</label><br>
<input required name="calendar" type="datetime-local" id="calendar"><br>
<label for="phoneNumber">Phone Number:</label><br />
<input required name="phoneNumber" type="tel" placeholder="###-###-####" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" id="phoneNumber" /><br />
<label for="email">Email:</label><br />
<input required name="email" type="text" id="email" placeholder="Enter Email Address" /><br />
<label for="message">Optional Message:</label><br />
<textarea name="message" id="message"></textarea><br />
<input type="submit" value="Submit" class="btn btn-sm rounded-3 bg-primary" id="mixin-button">
<input type="reset" value="Reset form" class="btn btn-sm rounded-3 bg-primary" id="mixin-button">
</form>
<div id="outputTag"></div>
<hr />
<footer class="text-center fs-6">
<br />
<br /> Good Food Hut❃12345 Big Bird Ave, Sesame Street, LA 12345 ❃ 337-555-4321❃
<br />
<h6>Website Created by RaylonJMG 2024</h6>
</footer>
</body>
</html>