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
93 lines (84 loc) · 3.14 KB
/
index.html
File metadata and controls
93 lines (84 loc) · 3.14 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
<!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="contener">
<header class="header box">
<div class="icon1">
<a href="#"><img src="img/icon.png" alt="icon_cake" class="icon_img" width="100px"> </a>
</div>
<div class="hedaer1">
<a href=""><img class="hum_icon" src="img/hum_bourger_icon2.png" alt="menu" width="50px"> </a>
<div class="h_text">
<h1 class="text_header">The best cakes in town <br>deliverd to your door</h1>
</div>
</div>
</header>
<nav class="nav_mun box" style="display: none;">
<ul class="mune_bar">
<a href="#">
<li class="bar">Home</li>
</a>
<a href="#">
<li class="bar">Store</li>
</a>
<a href="#">
<li class="bar">Best Cake</li>
</a>
<a href="#">
<li class="bar">Contact</li>
</a>
<a href="#">
<li class="bar">About US</li>
</a>
</ul>
</nav>
</nav>
<div class="artical box">
<h1 class="h1_welocme">Welcome</h1>
<article class="artical_p">
<strong>
<p>Cake is a flour confection made from flour, sugar, and other ingredients, and is usually baked.
In their
oldest forms, cakes were modifications of bread, but cakes now cover a wide range of
preparations </p>
<p>Cake is a flour confection made from flour, sugar, and other ingredients, and is usually baked.
In their
oldest forms, cakes were modifications of bread, but cakes now cover a wide range of
preparations </p>
</strong>
</article>
</div>
<div class="big_img box">
</div>
<div class="img1 box"></div>
<div class="img2 box"></div>
<div class="img3 box"></div>
<div class="img4 box"></div>
<div class="footer box">
<div class="footer_text">
<h1>Jion US</h1>
</div>
<div class="icon_three">
<div class="icon">
<img src="img/facebook-icon.svg" alt="facebook-icon">
</div>
<div class="icon">
<img src="img/instagram-icon.svg" alt="instagram-icon">
</div>
<div class="icon">
<img src="img/twitter-icon.svg" alt="twitter-icon">
</div>
</div>
</div>
</div>
</body>
</html>