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
76 lines (59 loc) · 1.26 KB
/
index.html
File metadata and controls
76 lines (59 loc) · 1.26 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
<!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>
<!-- Add a link to your css file here -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Add your markup here -->
<div class="flex-container">
<div>LOGO</div>
<div>CONTACT</div>
</div>
<br>
<br>
<div class="nav-bar">
<div>ABOUT</div>
<div>LESSONS</div>
<div>ORDERING</div>
<div>CAKES</div>
<div>HOME</div>
</div>
<br>
<br>
<div class="main-content">
<div>HELLO
<p>INFORMATION</p>
</div>
<div>IMAGE CAROUSEL
<br>
<br>
<p>IMG1</p>
<p>IMG2</p>
<p>IMG3</p>
<p>IMG4</p>
</div>
<br>
<br>
</div>
<br>
<br>
<div class="order-list">
<div>CAKE1</div>
<div>CAKE2</div>
<div>CAKE3</div>
<div>CAKE4</div>
</div>
<br>
<br>
<footer class="extra-info">
<div>SITE MAP</div>
<div>CONTACT</div>
<div>DELIVERY</div>
</footer>
</body>
</html>