-
Notifications
You must be signed in to change notification settings - Fork 0
/
specials.html
45 lines (42 loc) · 1.57 KB
/
specials.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
<!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">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Cats & Cups - Specials</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav id="nav">
<img src="images/logo-small.png" alt="Logo">
<a href="."><span>Home</span></a>
<a href="locations"><span>Locations</span></a>
<a href="drinks"><span>Drinks</span></a>
<a href="food"><span>Foods</span></a>
<a href="desserts"><span>Desserts</span></a>
<a href="specials"><span>Specials</span></a>
</nav>
<main class="container-fluid" id="main-container">
<h1 class="cursive">Specials</h1>
<hr>
<div class="row menu">
<div class="col-sm-6 col-12">
<img src="images/better-coffee.png" alt="">
<br>
<h3>Better Coffee $16.99</h3>
</div>
<div class="col-sm-6 col-12">
<img src="images/coffee-smoothie.png" alt="">
<br>
<h3>Coffee Smoothie $16.99</h3>
</div>
</div>
<hr>
<small>Prices adjusted to reflect the United States economy of 2030</small>
<hr>
</main>
</body>
</html>