Skip to content

11/12 passed #6

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 1 commit into
base: main
Choose a base branch
from
Open
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
138 changes: 86 additions & 52 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,64 +9,98 @@
</head>

<body>

<header>
<!-- company name -->
Sweet Eats Bakery
<h1>Sweet Eats Bakery</h1>

<!-- Navigation -->
About
Cookies
Celebrations
Catering
Contact

<!-- Image https://tk-assets.lambdaschool.com/bcf76f62-2431-4c22-b466-2e711f3da2b9_ui-i-bakery-main-header.png -->

<nav>
<div class = "links">
<a href = "#about">About</a>
<a href = "#cookies">Cookies</a>
<a href = "#celebrations">Celebrations</a>
<a href = "#catering">Catering</a>
<a href = "#contact">Contact</a>
</div>
</nav>
<div class = "img">
<img class = "img" src = "https://tk-assets.lambdaschool.com/bcf76f62-2431-4c22-b466-2e711f3da2b9_ui-i-bakery-main-header.png">
</div>
</header>
<!-- Marketing header -->
About Sweet Eats Bakery

Marzipan jelly-o macaroon I love macaroon jujubes. Candy candy canes jujubes I love ice cream croissant. Lollipop
donut icing I love liquorice gummi bears marzipan. Dragée jelly beans apple pie cotton candy lemon drops pastry candy
powder.

<section id = "About Sweet Eats Bakery">
<div class = "h2">
<h2>About Sweet Eats Bakery</h2>

<p>Marzipan jelly-o macaroon I love macaroon jujubes. Candy candy canes jujubes I love ice cream croissant. Lollipop
donut icing I love liquorice gummi bears marzipan. Dragée jelly beans apple pie cotton candy lemon drops pastry candy
powder.</p>
</div>
</section>
<!-- content -->

<!-- Image https://tk-assets.lambdaschool.com/7393a8fd-c8e5-4003-921f-79e0d546d02c_ui-i-bakery-cookies.png -->
Cookies

Cookie soufflé dessert carrot cake fruitcake halvah pudding cake. Marzipan topping bear claw soufflé gingerbread
biscuit. Tiramisu gummi bears chocolate bar sugar plum icing muffin cake jelly-o icing.

<!-- Image https://tk-assets.lambdaschool.com/297378d6-9c89-430f-9d2e-46ae3d5edce8_ui-i-bakery-cupcake-i.png -->
Celebrations

Candy apple pie lemon drops sweet roll danish. Tiramisu candy canes jelly-o jelly beans cotton candy pastry pudding
tootsie roll carrot cake. Dessert sesame snaps brownie lemon drops cookie donut dragée. Toffee pie fruitcake powder
gingerbread pudding.

<!-- Image https://tk-assets.lambdaschool.com/ab0cb095-5900-476c-b042-aea065d3dbbf_ui-i-bakery-celebrate.png -->
Catering

Sweet jelly-o apple pie powder jelly beans. Pastry sweet roll cake jujubes halvah soufflé brownie. Toffee cookie
lemondrops jelly beans chocolate bar. Wafer muffin jujubes danish tart danish chocolate wafer.

Contact

[email protected]
202-555-0144
4209 Bobcat Drive
Madison, WI, 48219

<section id = "cookies">
<div class = "h2">
<h2>Cookies</h2>

<p>Cookie soufflé dessert carrot cake fruitcake halvah pudding cake. Marzipan topping bear claw soufflé gingerbread
biscuit. Tiramisu gummi bears chocolate bar sugar plum icing muffin cake jelly-o icing.</p>
</div>
<div class = "img">
<img src = "Image https://tk-assets.lambdaschool.com/7393a8fd-c8e5-4003-921f-79e0d546d02c_ui-i-bakery-cookies.png">
</div>
</section>
<section id = "Celebrations">
<div class = "h2">
<h2>Celebrations</h2>

<p>Candy apple pie lemon drops sweet roll danish. Tiramisu candy canes jelly-o jelly beans cotton candy pastry pudding
tootsie roll carrot cake. Dessert sesame snaps brownie lemon drops cookie donut dragée. Toffee pie fruitcake powder
gingerbread pudding.</p>
</div>
<div class = "img">
<img src = "https://tk-assets.lambdaschool.com/297378d6-9c89-430f-9d2e-46ae3d5edce8_ui-i-bakery-cupcake-i.png">
</div>
</section>
<section id = "catering">
<div class = "h2">
<h2>Catering</h2>

<p>Sweet jelly-o apple pie powder jelly beans. Pastry sweet roll cake jujubes halvah soufflé brownie. Toffee cookie
lemondrops jelly beans chocolate bar. Wafer muffin jujubes danish tart danish chocolate wafer.</p>
</div>
<div class = "img">
<img src = "https://tk-assets.lambdaschool.com/ab0cb095-5900-476c-b042-aea065d3dbbf_ui-i-bakery-celebrate.png">
</div>
</section>
<section id = "contact">
<div class = "h2">
<h2>Contact Us</h2>
<a href = "mailto: [email protected]">[email protected]</a>
<a href = "tel:202-555-0144">202-555-0144</a>
<address>
<p>4209 Bobcat Drive
Madison, WI, 48219</p>
</address>
</div>
</section>
<!-- footer -->
Sweet Eats Bakery

About
Cookies
Celebrations
Catering
Contact

Copyright Sweet Eats 2018
<footer>
<div>
<h3>Sweet Eats Bakery</h3>
</div>
<div>
<nav>
<a href = "#about">About</a>
<a href = "#cookies">Cookies</a>
<a href = "#celebrations">Celebrations</a>
<a href = "#catering">Catering</a>
<a href = "#contact">Contact</a>
</nav>
</div>
<div>
<small>&copy; Copyright Sweet Eats 2018</small>
</div>
</footer>
</body>

</html>