-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (79 loc) · 3.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crazy Cats Coffee - Homepage</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="text--align-center format--max-width-70">
<h1>Welcome to Crazy Cats Coffee!</h1>
<!-- The actual content of the page -->
<p><em>Your Purr-fect Downtown Coffee Shop! </em></p>
<p>Percentage of profits goes to support local rescue cat organizations </p>
<img class="image--centered image--w60" src="/assets/reba-spike-OjB_lkGKhX8-unsplash.jpg" alt="Dark brown long haired cat at coffee shop on a dark wood table by two iced coffees in plastic cups">
<h2>About Crazy Cats Coffee</h2>
<ul>
<li>We're an old fashioned (pre 2020) coffee shop that encourages you to stay all day. </li>
<li>Crazy Cats Coffee is one of the few coffee shops with really comfortable couches, booths, and lounge chairs</li>
<li>We pay our staff a living wage, and let your optional tips go to support local cat rescues.</li>
<li>Four percent of profits, and 100% of cat tips go to support local cat rescues</li>
<li>Crazy Cats Coffee welcomes bookings for special events for both work and play</li>
<li>Our annual Fall In Love Adoption event is hosted every September in our back garden.</li>
</ul>
</p>
<h3 class="font--like-h2">Accessibility</h3>
<ul>
<li>
wheelchair and mobility aid accessible, </li>
<li>three, single person accessible non-gendered washrooms, </li>
<li>level access at entrace and to our back garden patio </li>
<li>American Sign Lanaguage is part of staff training</li>
<li>silent library room in back with dimmed lighting</li>
</ul>
<article>
<h2>Seasonal Specials</h2>
<p> A selection of our seasonal special snacks, meals, and drinks</p>
<h3>Snacks</h3>
<p> Cheese and crackers</p>
<p> Ginger cat crazy squares</p>
<h3>Meals</h3>
<p> Tuna bagel melt</p>
<p>Grrrriled cheese</p>
<p>Zoomie party platter - for sharing with friends!</p>
<h3>Drinks</h3>
<p> Ginger cat flat white</p>
<p> Purrrrfect peppermint hot chocolate</p>
</article>
<button class="btn--cta">
Book your holiday party
<span> - 10% off until Nov 15th!</span>
</button>
</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>
<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)
</footer>
</html>