-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad553ad
commit 6d9e64c
Showing
1 changed file
with
53 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,78 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Cookie Store</title> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Cookie Store</title> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" | ||
rel="stylesheet" | ||
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8159U5AR6csBvApHHNl/VI1Bx" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="css/styles.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Cookie Store</h1> | ||
<p>Buy our awesome cookies. All proceeds go to charity!</p> | ||
</header> | ||
|
||
<main> | ||
<h2>Our Cookies</h2> | ||
<p>Checkout our latest and delicious cookies.</p> | ||
|
||
<h3>Mint Chocolate</h3> | ||
<p>Tasty mint chocolate cookies</p> | ||
<img src="images/mint-cookie.png" alt="A single mint chocolate cookie" /> | ||
|
||
<h3>Peanut Butter</h3> | ||
<p>Yummy peanut buttery goodness</p> | ||
<img src="images/peanut-cookie.png" alt="A single peanut butter cookie" /> | ||
|
||
<h3>Oatmeal</h3> | ||
<p>Your fitness instructors favorite</p> | ||
<img src="images/oatmeal-cookie.png" alt="A single oatmeal cookie" /> | ||
|
||
<h3>Chocolate Chip</h3> | ||
<p>Gooey chocolate you'll love</p> | ||
<img src="images/chip-cookie.png" alt="A single chocolate chip cookie" /> | ||
<body> | ||
<img src="images/coffee-biscuits.jpg" alt="Coffee and Biscuits"> | ||
<header class="header-box"> | ||
<h1>Cookie Store</h1> | ||
<p>Buy our awesome cookies. All proceeds go to charity!</p> | ||
</header> | ||
<main> | ||
<div class="cookie-intro"> | ||
<h2>Our Cookies</h2> | ||
<p>Checkout our latest and delicious cookies.</p> | ||
</div> | ||
|
||
<div class="cookie-gallery"> | ||
<div class="cookie-item"> | ||
<h3>Mint Chocolate</h3> | ||
<p>Tasty mint chocolate cookies</p> | ||
<img src="images/mint-cookie.png" alt="A single mint chocolate cookie" /> | ||
</div> | ||
|
||
<div class="cookie-item"> | ||
<h3>Peanut Butter</h3> | ||
<p>Yummy peanut buttery goodness</p> | ||
<img src="images/peanut-cookie.png" alt="A single peanut butter cookie" /> | ||
</div> | ||
|
||
<div class="cookie-item"> | ||
<h3>Oatmeal</h3> | ||
<p>Your fitness instructor's favorite</p> | ||
<img src="images/oatmeal-cookie.png" alt="A single oatmeal cookie" /> | ||
</div> | ||
|
||
<div class="cookie-item"> | ||
<h3>Chocolate Chip</h3> | ||
<p>Gooey chocolate you'll love</p> | ||
<img src="images/chip-cookie.png" alt="A single chocolate chip cookie" /> | ||
</div> | ||
</div> | ||
</main> | ||
<div> | ||
|
||
|
||
<div class="info"> | ||
<h2>About us</h2> | ||
|
||
<img src="images/bakers.svg" alt="illustrations of two people baking" /> | ||
<div> | ||
|
||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | ||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim | ||
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea | ||
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate | ||
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint | ||
occaecat cupidatat non proident, sunt in culpa qui officia deserunt | ||
mollit anim id est laborum. | ||
</div> | ||
|
||
</div> | ||
<footer> | ||
<h2>Contact us</h2> | ||
<div> | ||
<div class="ad"> | ||
100 Broadway Avenue,<br /> | ||
New York, NY 10001 <br /> | ||
(212) 555-1234 | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
</html> |