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
98 lines (85 loc) · 2.56 KB
/
index.html
File metadata and controls
98 lines (85 loc) · 2.56 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
<!--Paste your html code here-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fatuma Restaurant</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="nav">
<!-- company name -->
<label class="logo">
Fatuma Restaurant
</label>
<!-- Navigation (Add link) -->
<nav>
<a class="active" href="#" >About</a>
<a href="#" >Menu</a>
<a href="#" >Catering</a>
<a href="#" >Contact</a>
</nav>
</header>
<div class="main">
<h1 class="local">taste the difference</h1>
<p class="local"> local. fresh & delicious</p>
</div>
<!-- header (add color)-->
<div class="content">
<h3 class="first-h3">About Fatuma Restaurant</h3>
<p class="first-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>
<!-- content -->
<section>
<div>
<img src=" " alt="Pasta with Banana">
<p>
It was popularised in the 1960s with the release
</p>
</div>
<div>
<img src=" " alt="Catering">
<p>
scrambled it to make a type specimen book
</p>
</div>
<div>
<img src=" " alt="Rice with Banana">
<p>
It has survived not only five centuries but also
</p>
</div>
</section>
<div class="form">
<form action="">
<h1>Contact</h1>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Name">
<label for="email">Email</label>
<input type="email" id="name" name="name" placeholder="Email">
<label for="message">Message</label>
<input type="text" name="message" placeholder="Message">
<input type="submit" value="Submit">
</form>
</div>
<!-- footer -->
<footer class="footer">
<label class="logo">Fatuma Restaurant</label>
<nav class="foot">
<a class="active" href="#" >About</a>
<a href="#" >Menu</a>
<a href="#" >Catering</a>
<a href="#" >Contact</a>
</nav>
<div class="copy">
<p>Copyright Fatuma Restaurant 2020</p>
</div>
</footer>
</body>