-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.61 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 2.61 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Shadows+Into+Light+Two' rel='stylesheet' type='text/css'>
<title>Pat's Salmon Cookies</title>
</head>
<body>
<header>
<div class="inner">
<img src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/fish.jpg?raw=true">
<ul>
<li>About Us</li>
<li>Hours</li>
<li>Stores</li>
<li>Contact Us</li>
</ul>
</div>
</header>
<main>
<div class="banner">
<p>Pat's Salmon Cookies</p>
<img id="salmon" src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/salmon.png?raw=true">
</div>
<section id="testimonials">
<img src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/cutter.jpeg?raw=true">
<p>Seattle's Original Salmon Cookies</p>
<ul id ="reviews">
<li>"I'm a bit of a Salmon Cookie snob and have tried them at every bakery/coffee shop I wander into around Seattle. My favorites are the Coho Chocolate Chip and Chinookerdoodle." </li>
<li>"Thought this was another gimmick dessert place but it's actually really good and worth a visit. I got the mackles'more and chocolate chip cookie with vanilla bean and it was amazing."</li>
<li>"The best cookies I've had in my life! Too bad I live too far but happy that they can deliver through the mail. Totally recommend this place if you are a cookie lover!"</li>
</ul>
</section>
<ul class="bottom_list">
<li>
<p class="shop">Shop Swag
<img src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/shirt.jpg?raw=true">
</p>
</li>
<li>
<p class="shop">Shop Cookies
<img src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/frosted-cookie.jpg?raw=true">
</p>
</li>
<li>
<p class="shop">Activities
<img src="https://github.com/codefellows/seattle-201d8/blob/master/class-09-advanced_css_layout/lab/assets/family.jpg?raw=true">
</p>
</li>
</ul>
</main>
<footer>
<ul>
<li class="clickMe">For Customers</li>
<li class="clickMe">For Stores</li>
<li>910 5th Avenue, Seattle, WA 98104</li>
<li> (206) 486-5018</li>
</ul>
</footer>
</body>
</html>