-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththank-you.html
More file actions
123 lines (119 loc) · 4.16 KB
/
thank-you.html
File metadata and controls
123 lines (119 loc) · 4.16 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Bring your own creativity" />
<meta name="author" content="Feng Han" />
<title>Chez Feng | Create your cake</title>
<!-- main css link -->
<link rel="stylesheet" href="styles/main.css" />
<!-- favicon -->
<link rel="shourtcut icon" type="image/png" href="images/cupcake.png" />
<script src="scripts/contact.js" defer></script>
</head>
<body>
<div class="container">
<div id="info-panel">
<p>275 Rue Lakeshore Road, Sainte-Anne-de-Bellevue, QC H9X 3L9</p>
<p><span class="hidden">|</span>Daily 7AM - 6PM</p>
</div>
<!-- nav starts -->
<nav id="nav">
<div id="main-nav" class="hidden">
<p><a href="index.html" class="chez-feng-logo logo-left">CHEZ FENG.</a></p>
<ul class="uppercase" id="menu">
<li id="home-page-hamburger" class="nav-item"></li>
<li><a class="nav-item" href="shop.html">shop now</a></li>
<li><a class="nav-item" href="create-your-cake.html">create your cake</a></li>
<li><a class="nav-item" href="recipe.html">weekly recipe</a></li>
<li><a class="nav-item" href="about.html">about us</a></li>
<li><a class="nav-item" href="contact.html">contact us</a></li>
</ul>
<ul id="languages">
<li><a href="thank-you.html">EN</a></li>
<li>|</li>
<li><a href="thank-you.html">FR</a></li>
</ul>
</div>
<div id="mobile-nav">
<p><a href="index.html" class="logo-right">CHEZ FENG.</a></p>
<i class="fas fa-bars" style="cursor: pointer;" onclick="mobileMenu();"></i>
</div>
</nav>
<!-- nav starts -->
<header>
</header>
<!-- main start -->
<main>
<div id="thank-you-content">
<h1>Thank you for ordering !</h1>
<P>Our quote is sent to your e-mail address.</P>
<!-- <h1>Customer's feedback</h1>
<p id="demo"></p> -->
<a href="index.html">
<button class="button uppercase">back to home page</button>
</a>
</div>
</main>
<!-- main ends -->
<!-- footer starts -->
<footer id="footer">
<div id="footer-wrapper">
<div id="address" class="footer-column">
<span>Address</span>
<address>
<p>
275 Rue Lakeshore Road<br />
Sainte-Anne-de-Bellevue<br />
QC H9X 3L9<br />
</p>
</address>
</div>
<div id="hours" class="footer-column">
<span>Hours</span>
<p>
Monday - Saturday : 7AM - 6PM<br />
Sunday : 7AM - 4PM
</p>
</div>
<div id=contact class="footer-column">
<span>Contact</span>
<p>
ActuallyIAmWebDev@ChezFeng.com<br />
514 123 1234
</p>
</div>
<form class="footer-column" id="subscribe" method="POST" action="#">
<label id="subscribe-label" for="email-address">Receive our weekly recipe!</label>
<input id="email-address" type="email" minlength="5" maxlength="30" placeholder="Enter your email" />
<input class="uppercase button" type="submit" value="subscribe" />
<div id="social-icons">
<i class="fab fa-facebook-square">
<a href="#"></a>
</i>
<i class="fab fa-instagram-square">
<a href="#"></a>
</i>
<i class="fab fa-twitter-square"></i>
<a href="#"></a>
</form>
</div>
</div>
<div id="copyright">
<p>Copyright 2021 © Created by team FEBM with love ❤️</p>
</div>
</footer>
<!-- footer ends -->
</div>
<script>
let text = "<ul>";
for (let i = 0; i < messages.length; i++) {
text += "<li>" + messages[i] + "</li>";
}
text += "</ul>";
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>