-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipes.html
30 lines (29 loc) · 899 Bytes
/
recipes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>savvy chef</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
<a href="./index.html">
<img class="logo" src="./assets/savvy-chef-logo.png">
</a>
</div>
</div>
</section>
<div class="tile is-ancestor saved-recipe-container">
<div class="tile is-parent is-12">
<div class="tile is-child box" id="recipes-parent">
<button class="clear-recipes">Clear recipes</button>
</div>
</div>
</div>
<script src="./recipes.js"></script>
</body>
</html>