Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
Binary file added design/American Heritage Chocolate.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added design/Chocolate Cake.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added design/checolate-cake .jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added design/cupcakes-with-sprinkles.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added design/strawberry-cake-on-white-surface.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,60 @@
<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>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Edu+QLD+Beginner:wght@400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Edu+QLD+Beginner&display=swap" rel="stylesheet">
<!-- Add a link to your css file here -->
<link rel="stylesheet" href="style.css">
</head>

<body>
<!-- Add your markup here -->
<header class="header">
<img src="./design/checolate-cake .jpg" alt="" width="120px">
<div class="header-info">
<div class="ham1">
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
</div>
<h1>The best cake in town deliverd to your door</h1>
</div>
</header>
<nav>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Cake</a></li>
<li><a href="#">OrderIn</a></li>
<li><a href="#">Lessons</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>

<main>
<article>
<h1>Welcome</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Natus sit perspiciatis, asperiores consequuntur iure inventore nesciunt sequi dolorem esse possimus voluptate necessitatibus, enim tenetur totam sunt deleniti nam temporibus suscipit.</p>
</article>
<img src="./design/cupcakes-with-sprinkles.jpg" alt="" width="450px">
</main>

<section class="content">
<img src="./design/strawberry-cake-on-white-surface.jpg" alt="" width="240px" height="235px">
<img src="./design/Chocolate Cake.jpg" alt="" width="240px" height="235px">
<img src="./design/American Heritage Chocolate.jpg" alt="" width="240px" height="235px">
<img src="./design/alexandra-khudyntseva-hXqbSgOPjSI-unsplash.jpg" alt="" width="240px" height="235px">
</section>


<footer>
<div class="footer1"></div>
<div class="footer2"></div>
<div class="footer3"></div>
<div class="footer4"></div>
</footer>
</body>

</html>
Loading