-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoldout.html
101 lines (69 loc) · 2.21 KB
/
soldout.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flavors de La Casa</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="CSS/rules.css">
<link rel="stylesheet" href="CSS/rules_responsivity.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="CSS/universal_rules.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<style>
.main-box {
background-image: url('images/main2.jpg');
}
body {
min-height: 100vh;
}
img {width:50%; margin:auto;}
a:hover {color:blue}
.main {height: 80vh;}
#banner-box {
position: relative;
padding-bottom: 10rem;
}
#banner-box h1 {
text-align: center;
color: #bf2608;
font-size: 5rem;
padding: 40px;
}
@media screen and (min-width: 1200px) {
.footer {
position: relative;
}
}
h2 {
text-align:center;
color:#BF2608;
}
</style>
</head>
<body>
<div class="hold-header">
<div id="header" class="header-wrapper">
<header class="header">
<a href="index.html"><img src="./images/logo.png" class="header-logo"></a>
<nav class="header-nav">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./recipes.html">Recipes</a></li>
<li><a href="./aboutus.html">About</a></li>
<li><a href="./your_cart.html">Cart</a></li>
</ul>
</nav>
</header>
</div>
</div>
<div class="main">
<section style="margin:auto; position: relative;" id='banner-box'> <!-- Main Title Section -->
<h1>Sold Out</h1>
<img style="margin: auto; display:flex;"src= "images/soldout.png">
<h2>We are sorry, but we are unable to provide this recipe at this time.</h2>
</section>
</div>
<div>
</body>
</html>