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
96 lines (72 loc) · 3.05 KB
/
index.html
File metadata and controls
96 lines (72 loc) · 3.05 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
<!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>
<div class="container">
<div class="icon_img box">
<img src="https://www.bing.com/th?id=OIP.5wHPVNq-5T5Adqavx62ouwAAAA&w=150&h=150&c=8&rs=1&qlt=90&o=6&pid=3.1&rm=2"
alt="icon" width="100px">
</div>
<div class="bor">
<ul class="bor_li box">
<li class="">Home</li>
<li class="">About</li>
<li class="">Blog</li>
<li class="">Contact</li>
</ul>
</div>
<div class="p_nav box">
<h3>The best cakes in town<br>delivered to your door</h3>
</div>
<div class="wel_tex box">Welcom
</div>
<article class="artical box">Our new range of postable cakes
has arrived! You have been asking for a long time for
Cutter & Squidge cakes to be sent outside of London,
so we have been working hard developing this
collection of cakes that can be sent anywhere in
Manchester UK!
</article>
<div class="main_img box">
<img src="https://th.bing.com/th/id/OIP.hT1QYACXEUqs6uTy8DyC6AHaE7?w=247&h=180&c=7&r=0&o=5&pid=1.7"
alt="main cakes" height="100%" width="100%" />
</div>
<div class="fimg_pic box">
<img src="https://th.bing.com/th/id/OIP.ylWiJppALlJ_lrxBgSJMWwHaJ4?w=186&h=248&c=7&r=0&o=5&pid=1.7"
alt="img1-1" height="100%" width="100%">
</div>
<div class="simg_pic box">
<img src="https://th.bing.com/th/id/OIP.h3dNNQ_UreUnm-2pPPsChQHaHa?w=186&h=186&c=7&r=0&o=5&pid=1.7"
alt="img1-2" height="100%" width="100%">
</div>
<div class="timg_pic box">
<img src="https://th.bing.com/th/id/OIP.PZ5UnzDjHPRP5PZRYPhyVQHaJ4?w=192&h=256&c=7&r=0&o=5&pid=1.7"
alt="img1-3" height="100%" width="100%">
</div>
<div class="fourth_pic box">
<img src="https://th.bing.com/th/id/OIP.rBy0OJobnBLKN7oNcSiJ3AHaI4?w=192&h=230&c=7&r=0&o=5&pid=1.7"
alt="img1-4" height="100%" width="100%">
</div>
<div class="footer box">
<p class="join_us">Join us on</p>
<main class="footer_imgs">
<div class="footer_ico">
<img src="facebook-icon.svg" alt="facebook" height="auto" width="auto">
</div>
<div class="footer_ico">
<img src="instagram-icon.svg" alt="instagram" height="auto" width="auto">
</div>
<div class="footer_ico">
<img src="twitter-icon.svg" alt="twitter" height="auto" width="auto">
</div>
</main>
</div>
</div>
</body>
</html>