forked from gabischool/Week2_Advanced_CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (81 loc) · 2.95 KB
/
index.html
File metadata and controls
100 lines (81 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!--Paste your html code here-->
<!-- Markup the content below with tags and attributes such that it can be styled in CSS-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fatuma Restaurant</title>
</head>
<body>
<div class="container">
<header>
<h1>Fatuma Restaurant</h1>
<!-- Navigation -->
<nav>
<a href=>About</a>
<a href=>Menu</a>
<a href=>Catering</a>
<a href=>Contact</a>
</nav>
</header>
<!-- Hero area -->
<div class="hero-text">
<h1>TASTE THE DIFERRENCE</h1>
<p>LOCAL. FRESH & DELICIOUS</p>
</div>
<!-- about us-->
<div class="about-section">
<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>
</div>
<section>
<div class="services">
<div class="inner">
<h2>Pasta with Banana</h2>
<p>
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>
</div>
<div class="inner">
<h2>Rice 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.
</p>
</div>
</div>
<div class="services">
<div class="inner">
<h2>Catering</h2>
<p>
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="inner inner-contact">
<h2>Contact</h2>
<p class="contact">
info@fatumarestaurant.com <br />
619-555-0144<br />
4209 Bobcat Drive<br />
San Diego, CA, 48219
</p>
</div>
</div>
</section>
<!-- footer -->
<footer>
<h1>Fatuma Restaurant</h1>
<nav>
<a href=>About</a>
<a href=>Menu</a>
<a href=>Catering</a>
<a href=>Contact</a>
</nav>
</footer>
<!-- copyright -->
<div class="copyright">
<p>Copyright Fatuma Restaurant 2020</p>
</div>
</div>
</body>
</html>