-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookies.html
96 lines (85 loc) · 3.25 KB
/
cookies.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<!-- Meta Data: Sets up and connects CSS (styling) files to the page -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cookies Page</title>
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
<link href="assets/css/global.css" rel="stylesheet" type="text/css" />
<link href="assets/css/utilities.css" rel="stylesheet" type="text/css" />
<link href="assets/css/cookies.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Header: Title -->
<header class="flex ai-c">
<!-- BEGIN - Activity 1: Insert your first name -->
<a class="logo" href="index.html">[INSERT NAME] Cookie Site</a>
<!-- END - Activity 1: Insert your name -->
<div id="opacityLayer"></div>
<!-- Navigation bar: adds all links to visit -->
<div id="menu" class="menu-div">
<nav id="header-nav" class="header-menu-sidebar">
<ul class="nav-content">
<li>
<a class="header-menu-link navigation-btn" href="index.html">
Home
</a>
</li>
<li>
<a class="header-menu-link navigation-btn" href="cookies.html">
Cookie Catalog
</a>
</li>
<li>
<a class="header-menu-link navigation-btn" href="goals.html">
My Hall of Awesome Goals
</a>
</li>
<li>
<!-- BEGIN - Activity 5: Input Your Own Digital Cookie Link -->
<a class="button" href="https://www.girlscouts.org/en/cookies.html" target="_blank">
<!-- END - Activity 5: Input Your Own Digital Cookie Link -->
<!-- Navigation - purchase button -->
<span class="button-text button-hover-underline">
Buy Now
</span>
</a>
</li>
</ul>
</nav>
<!-- Navigation: close menu -->
<button type="button" id="mobile-menu-trigger-close" class="close-btn" alt="Close Menu Button">
<img class="close-img" src="assets/images/menu-close-btn.svg" alt="Close Menu Button" />
</button>
</div>
<!-- Navigation: open menu -->
<button type="button" id="mobile-menu-trigger-open" class="open-btn" alt="Open Menu Button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
</header>
<main>
<!--PROMO-BANNER-->
<section class="promo-banner">
<promo-banner></promo-banner>
</section>
<!-- Cookie Catalog -->
<h1 class="cookie-header">Cookies Catalog</h1>
<div class="cookie-container">
<cookie-cards></cookie-cards>
<a class="button cookie-catalog-btn" href="cookies.html">
<span class="button-text button-hover-underline">Shop Now</span>
</a>
</div>
</main>
<!-- Footer: information on the bottom of the page -->
<footer>
<a href="https://codewithher.org/" target="_blank"><img src="assets/images/cwh-logo.svg" alt="CWH Logo" /></a>
</footer>
</body>
<script src="assets/js/scripts.js"></script>
<script type="module" src="assets/js/components/cookieCards/cookie-cards.js"></script>
<script type="module" src="assets/js/components/promoBanner/promo-banner.js"></script>
</html>