Skip to content

chocolate description fixed #44

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

Open
wants to merge 3 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
5 changes: 3 additions & 2 deletions lesson_08/chocolate.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
<!-- I think there is something wrong in this part -->
<div clas="container">
<h1 class="title">Chocolate</h1>
<diiv class="description">>>
<div class="description">
Our chocolate ice cream is really good, made with real cacao !
</div>
<!-- --------------------------------------------- -->

Here are some of the countries where cacao is harvested:
Expand All @@ -25,7 +26,7 @@ <h1 class="title">Chocolate</h1>
<li>Ghana</li>
</ul>

<img src="">
<img src="img/chocolate.jpg">

<a href="index.html"><button type="button">Back</button></a>

Expand Down
1 change: 1 addition & 0 deletions lesson_08/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ <h2 class="subtitle">These are our flavors:</h2>
<p class="flavor"><a href="orange.html">Orange</a></p>
<p class="flavor"><a href="strawberry.html">Strawberry</a></p>
<p class="flavor"><a href="pistachio.html">Pistachio</a></p>
<p class="flavor"><a href="mintchip.html">Mint Chip</a></p>
</div>
</div>
</body>
Expand Down
37 changes: 37 additions & 0 deletions lesson_08/mintchip.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mint Chip</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<!-- I think there is something wrong in this part -->
<div clas="container">
<h1 class="title">Mint Chocolate Chip</h1>
<div class="description">
Mint chip is the best flavor of ice cream objectively, if you claim that it tastes lkke toothpaste with chocolate chips in it then what about bubblegum toothpaste????
</div>
<!-- --------------------------------------------- -->

<img src="img/nerd01.jpg">

Some things in this flavor:

<ul>
<li>Chocolate Chip</li>
<li>Mint</li>
<li>Sugar</li>
<li>Ice cream</li>
</ul>


<a href="index.html"><button type="button">Back</button></a>

</div>
</div>

</body>
</html>