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
125 changes: 125 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@


<!-- Markup the content below with tags and attributes such that it can be styled in CSS-->
<!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>Document</title>
<link rel="stylesheet" href="style.css">

</head>
<body>

<header>

<h2>Fatuma Restaunant</h2>

<nav>

<a href="#">About</a>
<a href="#">Menu</a>
<a href="#">Catering</a>
<a href="#">Contact</a>

</nav>
</header>



<section class="section_one">
<h1>TASTE THE DIFFERENCE </h1>
<p>LOCAL FRESH & DELICIOUS</p>
</section>










<section class="section_three"
<h2> Fatuma Restauran</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>
<!-- content -->
</section>

<section class="fisrt_2">

<div class="text_box-one">
<h2>Pasta with Banana</h2>

<p>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 .</p>
</div>

<div class="text_box-two">
<h3>Rice with Banana</h3>

<p>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.
more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
</p>

</div>

</section>



<setion class="second_2">

<div class="text_box-tree">
<h3>Catering</h3>

<p>Nullam quis odio sit amet arcu sagittis ullamcorper vel vel ex. Duis consectetur sit amet metus quis congue. Nullam vitae viverra quam, vel volutpat nisi. Phasellus id mi sit amet nibh rutrum luctus.</p>
</div>

<div class="text_box-four">
<h3>Contact</h3>

<p>info@fatumarestaurant.com
619-555-0144
4209 Bobc
at Drive
San Diego, CA, 48219</p>
</div>


</setion>





<footer>

<div class="footer_box">
<h2>Fatuma Restaurant</h2>

<nav>
<a href="#">About</a>
<a href="#">Menu</a>
<a href="#">Catering</a>
<a href="#">Contact</a>>
</nav>
</div>


</div>
</footer>



<div class="ourdiv">
<p>Copyright Fatuma Restaurant 2020</p>
</div>

</body>
</html>

170 changes: 170 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

header {
background-color: #454f6f;
padding: 20px;
font-size: 20px;
color: #ffffff
display: flex;
justify-content: space-between;

}
nav a{
text-decoration: none;
font-size: 1rem;
margin-left: 18px;
color: #ffffff;
}



.section_one {
text-align: center;
font-size: 30px;
background-color: #e6834c;
padding: 40px;
line-height: 2;
color: #ffffff;
}


nav {
display: flex;
justify-content: flex-end;
padding-bottom: 40px;
}

.section_three
{
margin: auto;
padding: 30px;
width: 90%;

}



.fisrt_2{
display: flex;
width: 90%;
margin: auto;
}



.second_2{
display: flex;
width: 90%;
margin: auto;
}



.text_box-one{
width: 80%;
padding: 20px;

text-align: justify;
}

.text_box-two{
width: 80%;

padding: 20px;
text-align: justify;
}

.text_box-tree{
width: 80%;

padding: 20px;
text-align: justify;
}


.text_box-four{
width: 80%;
padding: 20px;
text-align: justify;
}

.footer_box{
margin: auto;
padding-bottom: 80px;
background-color: #454f6f;
justify-content: space-between;
display: flex;
color: rgb(253, 253, 250);

}



.ourdiv{
margin: 0;
text-align: center;
padding: 50px;
background-color:#e6834c;
}



/* Responsive part of the css */

@media (max-width :700px){

nav {
display: flex;
flex-direction: column;
justify-content: center;
padding-bottom: 40px;
text-align: center;
}




}