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
94 changes: 94 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1 +1,95 @@
<!--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">
<title>fatima restaurant </title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h3>FATIMA RESTAURANT</h3>
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">CATEGORY</a></li>
<li><a href="#">CONTACT</a></li>
</ul>

</nav>
</header>

<main>
<section class="home">
<div>
<h1>TASTE THE DIFFERENCE</h1>
<h2>Local. Fresh & Delicious</h2>
</div>
<img src="/assets/images/hero_image.jpg">
</section>
<section class="about">
<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>
<section class="category">
<div class="div1">
<div>
<h2>Pasta with Banana</h2>
<img src="/assets/images/rice_banana.jpg" >
<p>scrambled it to make a type specimen book. It has survived not only five centuries,</p>
</div>
<div>
<h2>Rice with Banana</h2>
<img src="/assets/images/pasta_banana.jpg" >
<p>scrambled it to make a type specimen book. It has survived not only five centuries.</p>
</div>
<div>
<h2>Rice with Banana</h2>
<img src="assets/images/catering.jpg" >
<p>scrambled it to make a type specimen book. It has survived not only five centuries.</p>
</div>
</div>
</section>
<section class="contact">
<h1>contact</h1>
<form action="post">
<div class="main">
<input type="text" name="email" placeholder="Email" required>
<input type="password" name="password" placeholder="password" required>
<input type="message" name="message" placeholder="message">

</div>

<input type="submit" value="submit">
</form>

</section>
</main>
<footer>
<div>
<header>
<h3>FATIMA RESTAURANT</h3>
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT</a></li>
<Li><a href="#">CATEGORY</a></li>
<li><a href="#">CONTACT</a></li>
</ul>

</nav>
</header>
</div>
<div class="pra">
<p>copyright fstims restaurant 2023</p>
</div>
</footer>
</body>
</html>
Loading