forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (62 loc) · 2.03 KB
/
index.html
File metadata and controls
65 lines (62 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Responsive Cake webpage</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<!-- section 1 top header -->
<div class="top">
<div class="logo">
<a href="#"><img src="./image/logo.jpg" alt="logo" /></a>
</div>
<div class="toggle">
<span class="menubar"></span>
</div>
<div class="slogo">
<p>The Best Cakes in the Town Deliverd to Your Door</p>
</div>
</div>
<!-- section 2 -->
<ul class="menu">
<li class="item"><a href="#">Home</a></li>
<li class="item"><a href="#">Cakes</a></li>
<li class="item"><a href="#">orderin</a></li>
<li class="item"><a href="#">lesson</a></li>
<li class="item"><a href="#">About</a></li>
</ul>
</nav>
<!-- section 3 welcome -->
<div class="container">
<div class="box cake1"><img src="./image/cake1 (2).jpg" alt="" /></div>
<div class="box Welcome">
<h1>Welcome</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius culpa
sed tempore fugiat rem deleniti maiores amet suscipit! Veritatis,
voluptatum.
</p>
</div>
</div>
<br />
<!-- section 4 -->
<div class="container2">
<div class="box2"><img src="./image/cake2.jpg" alt="" /></div>
<div class="box2"><img src="./image/cake3.jpg" alt="" /></div>
<div class="box2"><img src="./image/cake4.jpg" alt="" /></div>
<div class="box2"><img src="./image/cake5.jpg" alt="" /></div>
</div>
<!-- section 5 footer -->
<footer>
<p class="footer-copyright-text">
<a class="footer-copyright-link" href="#" target="_self">
©2020. | Designed By: hamed. | All rights reserved.
</a>
</p>
</footer>
</body>
</html>