Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.

London class 10/Bedrije-Omuri-HTML/CSS-Week3 #503

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
html structure
  • Loading branch information
Bedi06 committed Feb 9, 2023
commit 9492a0ba577e9a67209724fbeabf9c52539b7e0e
68 changes: 56 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,60 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Responsive Cake webpage</title>
<!-- Add a link to your css file here -->
</head>

<body>
<!-- Add your markup here -->
</body>

</html>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<ul>
<li>Home</li>
<li>About Us</li>
<li>Menu</li>
<li>Order</li>
</ul>
</nav>
<main>
<img src="" class="img-background" />
<h2>The best cakes in Town Delivered to your door</h2>
</main>
<section class="header-section">
<h1>
Cakes Co <br />
Welcomes You
</h1>
<p>
Walking into our bakery means being immediately greeted by a
delightful<br />
smell of freshly baked treats that no one can resist. As a
neighborhood<br />
bakery that serves the local community, we are committed to using the
<br />
best ingredients and serving you delicious, handcrafted baked goods.<br />
We have used the same recipes for generations, keeping true to the
original<br />
creations and signature products you know and love. Our dedicated
bakers<br />
will make sure to always have your favorites, so come on in and have a
bite!<br />
</p>
<img src="" class="" />
</section>
<section class="baked-good">
<h3>Our Baked Good</h3>
<p>You wouldn't want to miss them</p>
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt="" />
</section>
<footer>
<h3>Cakes Co</h3>
<p>info@mysite.com</p>
<p>©2023 by Cakes Co.</p>
</footer>
</body>
</html>