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
63 lines (58 loc) · 2.23 KB
/
index.html
File metadata and controls
63 lines (58 loc) · 2.23 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
<!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 -->
<nav>
<div class="navbar">
<div class="container nav-container">
<input class="checkbox" type="checkbox" name="" id="" />
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<div class="logo">
<h1>Danish Cakes LTD CO.</h1>
</div>
<div class="menu-items">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Ordering</a></li>
<li><a href="#">Menu</a></li>
<li><a href="#">Contact</a></li>
</div>
</div>
</div>
</nav>
<main>
<img id="icon" src="deva-williamson-S2jw81lfrG0-unsplash.jpg">
<div id="quote">
<h1>Welcome !</h1>
<h3>We are baking best cakes in the world with our famous cake dough.</h3>
</div>
</main>
<div id="grids">
<img class="aligning" id="bigger_image" src="american-heritage-chocolate-vdx5hPQhXFk-unsplash.jpg" alt="">
<img class="aligning second_image" src="slashio-photography-0uBlylsBuWk-unsplash.jpg" alt="">
<img class="aligning third_image" src="slashio-photography-T5KPTbbK-_E-unsplash.jpg" alt="">
<img class="aligning fourth_image" src="slashio-photography-XxWxPGXwDU0-unsplash.jpg" alt="">
<img class="aligning fifth_image" src="heather-barnes-_TN1m5R1pFI-unsplash.jpg" alt="">
</div>
<footer id="footer_icons">
<div>
<img class="footers" src="R.png" alt="">
<img class="footers" src="OIP.jpg" alt="">
<img class="footers" src="R2.png" alt="">
</div>
<h5>All rights reserved.</h5>
</footer>
</body>
</html>