Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Just making sure #108

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ TITLE: Include your section in the pull request title
- [ ] Wednesday
- [ ] Thursday
- [ ] Friday 3pm
- [ ] Friday 6pm
- [X] Friday 6pm

**Is the solution complete?**

Expand Down
69 changes: 68 additions & 1 deletion alternating.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cookie Store - Alternating Layout</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/alternating.css" />
</head>
<body>
<main class="container my-5">
<h2 class="text-center">Our Cookies</h2>
<p class="text-center">Checkout our latest and delicious cookies.</p>

<!-- Mint Chocolate Cookie -->
<div class="row align-items-center my-4">
<div class="col-md-6 text-center">
<img src="images/mint-cookie.png" alt="A single mint chocolate cookie" class="cookie-img green-bg rounded-circle">
</div>
<div class="col-md-6">
<h3>Mint Chocolate</h3>
<p>Tasty mint chocolate cookies</p>
</div>
</div>

<!-- Peanut Butter Cookie -->
<div class="row align-items-center my-4">
<div class="col-md-6 order-md-2 text-center">
<img src="images/peanut-cookie.png" alt="A single peanut butter cookie" class="cookie-img red-bg rounded-circle">
</div>
<div class="col-md-6 order-md-1">
<h3>Peanut Butter</h3>
<p>Yummy peanut buttery goodness</p>
</div>
</div>

<!-- Oatmeal Cookie -->
<div class="row align-items-center my-4">
<div class="col-md-6 text-center">
<img src="images/oatmeal-cookie.png" alt="A single oatmeal cookie" class="cookie-img orange-bg rounded-circle">
</div>
<div class="col-md-6">
<h3>Oatmeal</h3>
<p>Your fitness instructors favorite</p>
</div>
</div>

<!-- Chocolate Chip Cookie -->
<div class="row align-items-center my-4">
<div class="col-md-6 order-md-2 text-center">
<img src="images/chip-cookie.png" alt="A single chocolate chip cookie" class="cookie-img blue-bg rounded-circle">
</div>
<div class="col-md-6 order-md-1">
<h3>Chocolate Chip</h3>
<p>Gooey chocolate you'll love</p>
</div>
</div>

</main>
</body>
</html>






<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down Expand Up @@ -27,4 +94,4 @@ <h3>Chocolate Chip</h3>
<img src="images/chip-cookie.png" alt="A single chocolate chip cookie" />
</main>
</body>
</html>
</html> -->
Loading
Loading