Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 52 additions & 50 deletions tsunamiCoffee/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,66 +2,68 @@
<html>

<head>
<title>Tsunami Coffee</title>
<link rel="stylesheet" type="text/css" href="resources/css/reset.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<title>Tsunami Coffee</title>
<link rel="stylesheet" type="text/css" href="resources/css/reset.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
</head>

<body>
<div class="main">
<nav class="container">
<ul>
<li>Store</li>
<li>Hours</li>
<li>Wholesale</li>
</ul>
</nav>
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/logo.png"/>
</div>
<div class="main">
<nav class="container">
<ul>
<li>Store</li>
<li>Hours</li>
<li>Wholesale</li>
</ul>
</nav>
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/logo.png" />
</div>

<div class="container supporting">
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/beans.png" />
<div class="description">
<h2>Great coffee does not happen by accident.</h2>
<p>We work side by side with farmers around the world to strengthen farming practices to cultivate the best coffee beans in the world. Then, we train our baristas in the sacred art of the brew process, yielding the most flavorful coffee you’ve ever tasted.</p>
<p>Tsunami Coffee is certified organic and fair trade.</p>
</div>
<div class="container supporting">
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/beans.png" />
<div class="description">
<h2>Great coffee does not happen by accident.</h2>
<p>We work side by side with farmers around the world to strengthen farming practices to cultivate the best coffee beans in the world. Then, we train our baristas in the sacred art of the brew process, yielding the most flavorful coffee you’ve ever tasted.
</p>
<p>Tsunami Coffee is certified organic and fair trade.</p>
</div>
</div>

<div>
<div class="container">
<h1>9.4/10: A rush of flavors. Absolutely divine</h1>
<p>~ Coffee Critic</p>
</div>
<div class="rating">
<div class="container">
<h1>9.4/10: A rush of flavors. Absolutely divine.</h1>
<p>~ Coffee Critic</p>
</div>
</div>

<div class="container gallery">
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/latte.png" />
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/coffee-man.png" />
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/pastries.png" />
<div class="clearfix"></div>
</div>
<div class="container gallery">
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/latte.png" />
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/coffee-man.png" />
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/pastries.png" />
<div class="clearfix"></div>
</div>

<div class="container location">
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/map.png" />
<h1>Brewed with love in San Francisco-</h1>
</div>
<div class="container location">
<img src="https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/map.png" />
<h1>Brewed with love in San Francisco.</h1>
</div>

<footer>
<div class="container">
<div class="copyright">
&copy; Tsunami Coffee
</div>
<footer>
<div class="container">
<div class="copyright">
&copy; Tsunami Coffee
</div>

<nav>
<ul>
<li>Store</li>
<li>Hours</li>
<li>Wholesale</li>
</ul>
</nav>
</div>
</footer>

<nav>
<ul>
<li>Store</li>
<li>Hours</li>
<li>Wholesale</li>
</ul>
</nav>
</div>
</footer>
</body>

</html>
</html>
25 changes: 6 additions & 19 deletions tsunamiCoffee/resources/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body {

.main {
height: 30rem;
padding-top: 1 rem;
padding-top: 1rem;
background-image: url('https://content.codecademy.com/courses/freelance-1/unit-5/tsunami-coffee/images/bg-photo.png');
background-repeat: no-repeat;
background-position: center;
Expand All @@ -28,8 +28,8 @@ body {
}

nav {
background-color: orangered;
color: white;
background-color: OrangeRed;
color: White;
}

ul {
Expand Down Expand Up @@ -61,7 +61,7 @@ li {
}

.rating {
background-color: orangered;
background-color: OrangeRed;
height: 20rem;
padding: 0 1rem;
color: white;
Expand Down Expand Up @@ -91,11 +91,11 @@ li {
}

.location img {

width: 100%;
}

footer {
background-color: orangered;
background-color: OrangeRed;
padding: 0 1rem;
}

Expand All @@ -106,16 +106,3 @@ footer .container {
padding: 5em 0;
color: white;
}