-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
42 lines (39 loc) · 1.78 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<link rel="stylesheet" href="styles.css">
</head>
<header class="text--align-center">
<!--
<img src="https://gingerkiwi.github.io/hosted-assets/icon-local_cafe_FILL0_wght400_GRAD0_opsz24.svg" alt="icon of coffee cup"> -->
<a href="#main" id="skipToMain" class="a11y--skip-to-main text--align-center">Skip to main content</a>
<img class="image--centered logo" src="/assets/Logo_CrazyCatsCoffee.png" alt="Coffee shop logo. Icon of a cat sitting in a coffee mug.">
<nav aria-label="Primary navigation">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/menu.html">Menu</a></li>
<li><a href="/cats.html">The Cats</a></li>
<li><a href="/blog.html">Blog</a></li>
</ul>
</nav>
</header>
<main class="flex format--max-width-80">
<h1>Menu</h1>
<p class="text--align-center font--like-h2">Comming Soon!</p>
</main>
<footer class="padding-y-2">
<nav aria-label="Secondary navigation">
<ul>
<li><a href="/" class="footer--nav">Home</a></li>
<li><a href="/blog/2023-11-14-coffee-history.html" class="footer--nav ">Blog: Coffee History</a></li>
<li class="footer--nav "><a href="/blog/special-events.html" class="footer--nav ">Blog: Special Events</a></li>
<li><a href="/cats/adoptions" class="footer--nav ">Adoptions</a></li>
</ul>
<!-- navigation links for topics -->
</nav>
</footer>
<p>Site logo was developed in figma using "cat in mug" by Emily Murphy from</p> <a class="a--like-nav-hover a--like-nav" href="https://thenounproject.com/browse/icons/term/cat-in-mug/" target="_blank" title="cat in mug Icons" rel="nofollow noopener noreferrer external">Noun Project</a> (CC BY 3.0)
</html>