-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.2 KB
/
index.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
<!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/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Cats & Cups</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="center cursive">Cats & Cups</h1>
<hr>
<img id="logo" src="images/logo.png" alt="">
<hr>
<p><i>Cats & Cups</i> is the perfect place to eat with a cat</p>
<hr>
</main>
</body>
</html>