This repository was archived by the owner on Oct 26, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 43
Gt week3 #86
Open
GTabala
wants to merge
8
commits into
CodeYourFuture:master
Choose a base branch
from
GTabala:GT_Week3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Gt week3 #86
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e899493
Update index.html
GTabala 05023e7
Update index.html
GTabala 6d182e4
First
GTabala afef3db
Changes from files
GTabala 8a033df
Fixed path.
GTabala 7494697
Finish
GTabala a1431d3
Title
GTabala 3782dcd
Added missing bracket
GTabala File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,94 +1,62 @@ | ||
<!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" /> | ||
<title>Responsive Cake webpage</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Pacifico&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<div class="top-header"> | ||
<img | ||
class="header-image" | ||
src="https://i.postimg.cc/Zq6Jqk9D/2a6c1858-0fe8-48a7-82fe-1976833b8691-200x200.png" | ||
alt="Let Them Eat Cake logo" | ||
/> | ||
|
||
<button class="contact-button">Contact</button> | ||
</div> | ||
|
||
<nav class="navigation"> | ||
<ul> | ||
<li><a href="">Home</a></li> | ||
<li><a href="">Cakes</a></li> | ||
<li><a href="">Ordering</a></li> | ||
<li><a href="">Lessons</a></li> | ||
<li><a href="">About</a></li> | ||
</ul> | ||
</nav> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Charlie and the Cake Factory.</title> | ||
</head> | ||
<body> | ||
<header id="header"> | ||
<div class="container"> | ||
<img id="logo" src="https://i.postimg.cc/Zq6Jqk9D/2a6c1858-0fe8-48a7-82fe-1976833b8691-200x200.png" alt=""> | ||
|
||
<button id="contact-btn">Contact</button> | ||
</div> | ||
<nav id="cakes-menu"> | ||
<ul> | ||
<li><a class="nav-link" href="#">Home</a> </li> | ||
<li><a class="nav-link" href="#">Cakes</a></li> | ||
<li><a class="nav-link" href="#">Ordering</a></li> | ||
<li><a class="nav-link" href="#">Lessons</a></li> | ||
<li><a class="nav-link" href="#">About</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<section class="about"> | ||
<div id="tagline"> | ||
<h1>Let Them Eat Cake</h1> | ||
|
||
<h3>Feeding the cake deprived since 2020</h3> | ||
|
||
<img | ||
class="cupcakes" | ||
src="../images/Cakes/cupcakes.jpg" | ||
alt="Cupcakes with sprinkles" | ||
/> | ||
</section> | ||
|
||
<section class="example-cakes"> | ||
<h3>Just a small sample of our bakes:</h3> | ||
</div> | ||
<div> | ||
<img id="mainImg" src="./images/Cakes/cupcakes.jpg" alt="delicious cup cake"> | ||
</div> | ||
<p>Just a small sample of our bakes:</p> | ||
<div id="cake-images-container"> | ||
<div class="examples"> | ||
<img src="./images/Cakes/cake-with-blackberries.jpg" alt=""> | ||
</div> | ||
<div class="examples"> | ||
<img src="./images/Cakes/cake-with-macarons.jpg" alt=""> | ||
</div> | ||
<div class="examples"> | ||
<img src="./images/Cakes/not-technically-a-cake.jpg" alt=""> | ||
</div> | ||
<div class="examples"> | ||
<img src="./images/Cakes/wedding-cake.jpg" alt=""> | ||
</div> | ||
|
||
|
||
|
||
</div> | ||
<footer> | ||
<ul> | ||
<li> | ||
<img | ||
class="images" | ||
src="../images/Cakes/cake-with-blackberries.jpg" | ||
alt="Sponge cake with blackberries and flowers" | ||
/> | ||
</li> | ||
<li> | ||
<img | ||
class="images" | ||
src="../images/Cakes/wedding-cake.jpg" | ||
alt="Wedding cake" | ||
/> | ||
</li> | ||
<li> | ||
<img | ||
class="images" | ||
src="../images/Cakes/cake-with-macarons.jpg" | ||
alt="Cake decorated with macarons" | ||
/> | ||
</li> | ||
<li> | ||
<img | ||
class="images" | ||
src="../images/Cakes/not-technically-a-cake.jpg" | ||
alt="Frangipane with raspberries" | ||
/> | ||
</li> | ||
</ul> | ||
</section> | ||
</main> | ||
|
||
<footer class="footer"> | ||
<ul> | ||
<li><a href="">Sitemap</a></li> | ||
<li><a href="">Contact</a></li> | ||
<li><a href="">Delivery</a></li> | ||
</ul> | ||
<li><a class="footer-link" href="#">Sitemap</a></li> | ||
<li><a class="footer-link" href="#">Contact</a></li> | ||
<li><a class="footer-link" href="#">Delivery</a></li> | ||
</ul> | ||
</footer> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should fill in alt values or remove the attribute.