Skip to content
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
120 changes: 120 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1 +1,121 @@
<!--Paste your html code here-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Document</title>
</head>
<body>
<nav>
<input id="nav-toggle" type="checkbox" />
<div class="logo"><h1 class="title">Fatuma Restaurant</h1></div>
<ul class="links">
<li><a href="#About">About</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#catering">Catering</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<label for="nav-toggle" class="icon-burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</label>
</nav>
<!---->
<main>
<div class="left-side">
<h2>
TASTE THE <br />
DIFFERENCE
</h2>
<p>Local. Fresh & <span>Delicious</span></p>
</div>
<div class="right-side">
<img src="assets/images/hero_image.jpg" alt="" />
</div>
</main>
<!---->
<section class="about-us-container">
<h2>About Fatuma Restaurant</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. It has survived not only five
centuries, but also the leap into electronic typesetting, remaining
essentially unchanged. It was popularised in the 1960s with the release
of Letraset sheets containing Lorem Ipsum passages, and more recently
with desktop publishing software like Aldus PageMaker including versions
of Lorem Ipsum.
</p>
</section>
<!---->
<div class="menu-container">
<ul class="menu-items">
<li class="menu-item">
<img src="assets/images/catering.jpg" alt="Bread" />
<p>Delicious and fresh bread</p>
</li>
<li class="menu-item">
<img src="assets/images/rice_banana.jpg" alt="Pizza" />
<p>Tasty and loaded with toppings</p>
</li>
<li class="menu-item">
<img src="assets/images/pasta_banana.jpg" alt="Bread" />
<p>Delicious and fresh bread</p>
</li>
</ul>
</div>
<!--contact-->
<div class="form-container">
<h1>Contact Us</h1>
<form>
<label for="name">Name:</label>
<input
type="text"
id="name"
name="name"
placeholder="Your name.."
required
/>

<label for="email">Email:</label>
<input
type="email"
id="email"
name="email"
placeholder="Your email.."
required
/>

<label for="message">Message:</label>
<textarea
id="message"
name="message"
placeholder="Write something.."
style="height: 200px"
required
></textarea>

<input type="submit" value="Submit" />
</form>
</div>
<!---->
<div class="container1">
<div class="title2"><h1>Fatuma Restaurant</h1></div>
<div class="menu-list">
<span class="list">About</span>
<span class="list">Menu</span>
<span class="list">Catering</span>
<span class="list">Contact</span>
</div>
</div>
<!---->
<footer class="footer">
<div class="copyright">&copy; Copyright Fatuma Restaurant 2020</div>
</footer>
</body>
</html>
Loading