generated from Code-Institute-Org/gitpod-database-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorder.html
112 lines (104 loc) · 3.12 KB
/
order.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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="Braai Gifting Co offers high-quality meats and spices that are locally sourced, creating a stress-free gift-giving experience. Give the gift of a braai and create lasting memories with ease, quality, and convenience."
>
<meta
name="keywords"
content="braai, BBQ, gift packages, high-quality meats, locally sourced, stress-free gift-giving, gift packages, recipe book, personalized packaging, 48-hour delivery"
>
<link rel="stylesheet" href="assets/css/style.css">
<title>Order Form</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body,
iframe {
border-radius: 0 !important;
}
</style>
</head>
<body>
<header id="navbar">
<a href="index.html">
<h1 class="logo">Braai Gift Co</h1>
</a>
<nav class="menu">
<ul>
<li>
<button class="order-button" onclick="window.location.href='order.htm'">Order</button>
</li>
<li>
<a href="gallery.html">Box Gallery</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
</nav>
</header>
<div
data-tf-widget="Zn2xJp1w"
data-tf-opacity="100"
data-tf-inline-on-mobile
data-tf-iframe-props="title=Order Form"
data-tf-transitive-search-params
data-tf-auto-focus
data-tf-medium="snippet"
data-tf-full-screen
></div>
<script src="//embed.typeform.com/next/embed.js"></script>
<footer>
<ul class="social-networks">
<li>
<a
href="https://facebook.com"
target="_blank"
rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a
href="https://twitter.com"
target="_blank"
rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"
><i class="fab fa-twitter-square"></i
></a>
</li>
<li>
<a
href="https://youtube.com"
target="_blank"
rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"
><i class="fab fa-youtube-square"></i
></a>
</li>
<li>
<a
href="https://instagram.com"
target="_blank"
rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
</footer>
<!--font awesome script-->
<script
src="https://kit.fontawesome.com/210d527ace.js" crossorigin="anonymous">
</script>
</body>
</html>