Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.
Closed
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 Cakes-Co/images/cake-1.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 Cakes-Co/images/cake-2.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 Cakes-Co/images/cake-3.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 Cakes-Co/images/cake-4.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 Cakes-Co/images/cake-hero.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 Cakes-Co/images/cake-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions Cakes-Co/images/facebook-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions Cakes-Co/images/instagram-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions Cakes-Co/images/twitter-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
119 changes: 109 additions & 10 deletions Cakes-Co/index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,115 @@
<!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>
<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=Inria+Sans:wght@700&display=swap"
rel="stylesheet"
/>
<!-- Add a link to your css file here -->
</head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>

<body>
<!-- Add your markup here -->
</body>
<body>
<header class="header">
<img class="logo" src="images/cake-logo.png" alt="Cakes Co Logo" />
<h1 class="title">Cakes Co</h1>
<section class="nav-text">
<label for="trigger">
<input type="checkbox" class="trigger" id="trigger" />
<div class="hamburger">
<span id="bar1"></span>
<span id="bar2"></span>
<span id="bar3"></span>
</div>
<nav class="nav-list">
<ul class="navigation__list">
<li class="navigation__item">
<a class="navigation__link" href="#">Home</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Cakes</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Ordering</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Lessons</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">About</a>
</li>
</ul>
</nav>
</label>
<p class="header-text">
The best cakes in your town delivered to your door
</p>
</section>
</header>
<main class="container">
<section class="hero">
<section>
<img
class="img-hero"
src="images/cake-hero.jpg"
alt="A cheesecake with strawberries"
/>
</section>
<article class="brief">
<h2>Welcome</h2>
<p class="brief-text">
At Cakes Co, we're passionate about creating delicious and
beautifully crafted cakes that add a touch of magic to every
occasion. Our talented bakers and cake artists pour their heart and
soul into each creation, using the finest ingredients and their
creative flair to ensure every cake is a masterpiece.
</p>
</article>
</section>
<section class="small-images">
<div class="s-images" id="img-1">
<img
src="images/cake-1.jpg"
alt="Cake topped with strawberries and blueberries"
/>
</div>
<div class="s-images" id="img-2">
<img
src="images/cake-2.jpg"
alt="cheesecake slice with strawberries and blueberries in plate"
/>
</div>
<div class="s-images" id="img-3">
<img src="images/cake-3.jpg" alt="Chocolate cupcake" />
</div>
<div class="s-images" id="img-4">
<img src="images/cake-4.jpg" alt="Cupcakes in blue color" />
</div>
</section>
</main>
<hr />
<footer class="footer">
<h4>Find us on</h4>
<section class="social-icons">
<a class="social"
><img src="images/twitter-icon.svg" alt="Twitter icon"
/></a>
<a class="social"
><img src="images/facebook-icon.svg" alt="Facebook icon"
/></a>
<a class="social"
><img src="images/instagram-icon.svg" alt="Instagram icon"
/></a>
</section>

</html>
<h5 class="copyright">©Cakes Co.</h5>
</footer>
<!-- Add your markup here -->
</body>
</html>
Loading