Files
codecademy/tea_cozy/index.html
gauvainboiche 6a18c3851c First init
2025-07-08 11:23:22 +02:00

83 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tea Cozy</title>
<link rel="stylesheet" href="./resources/css/style.css">
</head>
<body>
<header class="header">
<img src="./resources/imgs/img-tea-cozy-logo.png" id="header-img">
<nav id="header-nav">
<a href="#mission">Mission</a>
<a href="#featured">Featured Tea</a>
<a href="#locations">Locations</a>
</nav>
</header>
<section class="mission">
<img src="./resources/imgs/img-mission-background.jpg">
<div id="center-band">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</section>
<section class="tea-of-the-month">
<h2>Tea of the Month</h2>
<h4>What's steeping at The Tea Cozy ?</h4>
<div class="tea-month-gallery">
<div class="tea-month-img">
<img src="./resources/imgs/img-berryblitz.jpg">
<h4>Fall Berry Blitz Tea</h4>
</div>
<div class="tea-month-img">
<img src="./resources/imgs/img-spiced-rum.jpg">
<h4>Spiced Rum Tea</h4>
</div>
<div class="tea-month-img">
<img src="./resources/imgs/img-donut.jpg">
<h4>Seasonal Donuts</h4>
</div>
<div class="tea-month-img">
<img src="./resources/imgs/img-myrtle-ave.jpg">
<h4>Myrtle Ave Tea</h4>
</div>
<div class="tea-month-img">
<img src="./resources/imgs/img-bedford-bizarre.jpg">
<h4>Bedford Bizarre Tea</h4>
</div>
</div>
</section>
<section class="locations">
<h2>Locations</h2>
<div class="location-gallery">
<div class="location">
<h4>Downtown</h4>
<p>384 West 4th St<br>
Suite 108<br>
Portland, Maine</p>
</div>
<div class="location">
<h4>East Bayside</h4>
<p>3433 Phisherman's Avenue<br>
(Northwest Corner)<br>
Portland, Maine</p>
</div>
<div class="location">
<h4>Oakdale</h4>
<p>515 Crescent Avenue<br>
Second Floor<br>
Portland, Maine</p>
</div>
</div>
</section>
<section class="contacts">
<h2>The Tea Cozy</h2>
<h5>contact@theteacozy.com</h5>
<h5>917-555-8904</h5>
</section>
<footer>
<p>© 2023 Tea Cozy. Tous droits réservés.</p>
</footer>
</body>
</html>