-
Notifications
You must be signed in to change notification settings - Fork 0
/
thank.html
70 lines (65 loc) · 2.88 KB
/
thank.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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Thank You!</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/thankstyle.css" rel="stylesheet" type="text/css" />
<style>
body {
margin: 0 auto;
background-image: url('images/woodentable_BG.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover; /*Background Image*/
}
@import url('https://fonts.googleapis.com/css2?family=Rozha+One&display=swap');
</style>
</head>
<body>
<div id="content">
<div id="nav">
<div class="navbar">
<img class="logo" src="Images/Logo-T.png">
<div class="subnav">
<button class="subnavbtn"><a href="Menu-Page.html">Menu<i class="fa fa-caret-down"></i></button></a>
<div class="subnav-content">
<a href="Menu-Page.html">Appetizers</a>
<a href="Menu-Page.html">Entrees</a>
<a href="Menu-Page.html">Deserts</a>
</div>
</div>
<div class="subnav">
<button class="subnavbtn"><a href="Menu-Page.html">Drinks <i class="fa fa-caret-down"></i></button></a>
<div class="subnav-content">
<a href="Menu-Page.html">Beer</a>
<a href="Menu-Page.html">Soda</a>
</div>
</div>
<div class="subnav">
<button class="subnavbtn"><a href="Menu-Page.html">Takeout <i class="fa fa-caret-down"></i></button></a>
<div class="subnav-content">
<a href="Menu-Page.html">Link 1</a>
<a href="Menu-Page.html">Link 2</a>
</div>
</div>
<div class="subnav">
<button class="subnavbtn"><a href="Menu-Page.html">Events <i class="fa fa-caret-down"></i></button></a>
<div class="subnav-content">
<a href="Menu-Page.html">Live Music</a>
<a href="Menu-Page.html">Seasonal</a>
</div>
</div>
<a class="cta" href="Menu-Page.html"><button class="contact">Contact Us</button></a>
</div>
</div><!--nav-->
<div id="bottom">
<div id="thank">
<h1>Thank you for placing your order!</h1>
<h2>You will receive a text or call when your order is ready!</h2>
<img src="images/grill.gif">
</div> <!--thank-->
</div> <!--bottom-->
</div> <!--content-->
</body>