-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32258cb
commit 38c2707
Showing
8 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-GB"> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta charset="UTF-8"> | ||
<title>Kunrong's Website</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="https://kit.fontawesome.com/72bafd2989.js" crossorigin="anonymous"></script> | ||
</head> | ||
<body> | ||
<header> | ||
<nav> | ||
<div class="logo"> | ||
<a href="index.html"><img src="img/logo/logo.png" alt="Website logo"></a> | ||
</div> | ||
<ul class="navbar"> | ||
<li><a href="index.html">Home</a></li> | ||
<li class="dropdown"> | ||
<a href="food.html">Food</a> | ||
<div class="dropdown-content"> | ||
<a href="food.html">All</a> | ||
<a href="carbonhydrate.html">Carbonhydrate</a> | ||
<a href="protein.html">Protein</a> | ||
<a href="antioxidants.html">Antioxidants</a> | ||
<a href="unhealthyfat.html">Unhealthy Fat</a> | ||
</div> | ||
</li> | ||
<li><a href="about.html">About</a></li> | ||
<li><a href="contact.html"><button class="navbtn">Contact</button></a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<h1 class="pagetitle">Unhealthy Fat</h1> | ||
<div class="thirdcontainer"> | ||
<img src="img/unhealthyfood/cake-balls-4139982_1920.jpg" alt="cakes"> | ||
<img src="img/unhealthyfood/cookies-g09f0373b4_1920.jpg" alt="cookies"> | ||
<img src="img/unhealthyfood/easter-4948871_1920.jpg" alt="easter"> | ||
<img src="img/unhealthyfood/eclair-3366430_1920.jpg" alt="eclair"> | ||
</div> | ||
</main> | ||
<footer> | ||
<div class="footercontainer"> | ||
<a href="contact.html"><button class="navbtn">Email</button></a> | ||
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a> | ||
<a href="#"><i class="fa-brands fa-instagram"></i></a> | ||
<a href="#"><i class="fa-brands fa-x-twitter"></i></a> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |