-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (51 loc) · 2.08 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Recipe Book</title>
<link rel = "stylesheet" href = "styles.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=inter' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body class = "body-styling">
<nav class="navbar navbar-expand-lg bg-body-tertiary spacing rounding">
<div class="container-fluid">
<a class="navbar-brand" href="#">Recipes</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" href="index.html">Recipe List</a>
</div>
</div>
</div>
</nav>
<h1 class = "borders center">Recipe List:</h1>
<div class = "line"></div>
<div id = "Table-of-contents">
<div class="navbar">
</div>
<div class = "recipe-list" id = "Scallops">
<a class = "recipe-link" class = "recipe-list" href = ./pages/Scallop_crudo.html>
<img src = "Crudo.png">
<figcaption>Citrus-y Scallop Crudo</figcaption>
</a>
</div>
<div class = "recipe-list" id = "Burrata">
<a class = "recipe-link"c lass = "recipe-list" href = "./pages/Burrata.html">
<img class = "test" src ="Burratta.png">
<figcaption>Grilled Peach Burrata</figcaption>
</a>
</div>
<div class = "recipe-list" id = "Lamb">
<a class = "recipe-link"c lass = "recipe-list" href = ./pages/Seared_lamb_chops.html>
<img src = "lamb.png">
<figcaption>Seared lamb chops</figcaption>
</a>
</div>
</div>
</body>
</html>