-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
43 lines (36 loc) · 1.21 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
<!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.0" />
<title>Lab 7 - SPA vs. PWA</title>
<!-- Web Components -->
<script src="assets/components/RecipeCard.js" type="module"></script>
<script src="assets/components/RecipeExpand.js" type="module"></script>
<!-- Service Worker -->
<script src="sw.js" type="module"></script>
<!-- Router -->
<script src="assets/scripts/router.js" type="module"></script>
<!-- Main Stylesheet & Scripts -->
<link rel="stylesheet" href="assets/styles/main.css" />
<script src="assets/scripts/main.js" type="module"></script>
</head>
<body>
<main>
<section class="section--recipe-cards">
<div class="recipe-cards--wrapper">
<!-- Recipes Added Here -->
</div>
<div class="button--wrapper">
<img src="/assets/images/icons/arrow-down.png" alt="Arrow down" />
<button>Show more</button>
</div>
<div class="button--horizontal-line"></div>
</section>
<section class="section--recipe-expand">
<recipe-expand></recipe-expand>
</section>
</main>
</body>
</html>