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
Binary file added images/birth-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 images/cake-logo.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 images/cakes-group.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 images/cupcake.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 images/fruit-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 images/swirl.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 78 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,88 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Responsive Cake webpage</title>
<!-- Add a link to your css file here -->
<link href="style.css" 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=Cormorant+SC&family=Lobster&display=swap" rel="stylesheet">
</head>

<body>
<!-- Add your markup here -->
<header class="header">
<img class="logo" src="images/cake-logo.jpg" alt="logo">

<navbar class="navbar">
<input id="menu-toggle" type="checkbox" />
<label class="menu-btn" for="menu-toggle">
<span></span>
</label>
<ul class="nav-list">
<li class="nav-link"><a href="#">HOME</a></li>
<li class="nav-link"><a href="#">CAKES</a></li>
<li class="nav-link"><a href="#">ORDERING</a></li>
<li class="nav-link"><a href="#">LESSONS</a></li>
<li class="nav-link"><a href="#">ABOUT</a></li>
</ul>
</navbar>

<p class="header-text">The best cakes in town delivered to your door</p>
</header>

<ul class="desktop">
<li class="navigation"><a href="#">HOME</a></li>
<li class="navigation"><a href="#">CAKES</a></li>
<li class="navigation"><a href="#">ORDERING</a></li>
<li class="navigation"><a href="#">LESSONS</a></li>
<li class="navigation"><a href="#">ABOUT</a></li>
</ul>

<img class="image-name" src="images/cakes-group.jpg" alt="welcome image">

<div class="welcome-text">
<h1>Welcome</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. A quos corrupti, nihil quibusdam libero facere?
Quisquam qui corrupti atque dolore distinctio nostrum quas corporis, placeat dolores, cupiditate voluptatum.
Molestiae, voluptatum?</p>
</div>




<section class="thumbnail1">
<img class="birth-cake thumbnail" src="images/birth-cake.jpg">
</section>


<section class="thumbnail2">
<img class="fruit-cake thumbnail" src="images/fruit-cake.jpg">
</section>


<section class="thumbnail3">
<img class="cupcake thumbnail" src="images/cupcake.jpg">
</section>


<section class="thumbnail4">
<img class="swirl thumbnail" src="images/swirl.jpg">
</section>




<footer class="footer">
<section class="about">
<div class="about1"><a href="#"> About</a></div>
<div class="about1"><a href="#"> Contact us</a></div>
<div class="about1"><a href="#"> Surprise</a></div>
</section>
<section class="copyright">
<div class="copyright1"><a href="#"> Copyright</a></div>
</section>
</footer>


</body>

</html>
Loading