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
109 lines (90 loc) · 4.82 KB
/
index.html
File metadata and controls
109 lines (90 loc) · 4.82 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
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body><header class="container-fluid d-flex flex-column flex-lg-column-reverse overflow-hidden mb-4">
<div class="nav">
<nav class="navbar navbar-expand-lg navbar-light ">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">cakes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">orderin</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">lessons</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">about</a>
</li>
</div>
</ul>
</div>
</div>
</nav>
<div class="header">
<div class="col-4">
<img src="https://images.unsplash.com/photo-1621303837174-89787a7d4729?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MTJ8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=500&q=60" >
</div>
<h1 class="col-5">The best cakes in town delivered to your door</h1>
</div></header>
<main>
<section class="container welcome mb-5">
<div class="welcome">
<div>
<img
src="https://media.istockphoto.com/photos/beautiful-bright-cake-decorated-in-the-form-of-fantasy-unicorn-of-a-picture-id899069970?k=20&m=899069970&s=612x612&w=0&h=F05PFL6ZTh7KkQUp6kvZD1Do5ScBPytHtAgZoi5oCPs=">
</div>
<div>
<h1>WELCOME</h1>
<p>A cakery or cake shop is a retail business specializing in producing and/or selling cakes; they may also sell
cupcakes,
muffins, sponges, as well as other baked goods that fall under the title of a cake. ... "A sweet baked food made of
flour, liquid, eggs, and other ingredients, such as raising agents and flavorings."</p>
</div>
</div>
</section>
<section class="fourcakes">
<div>
<img class="first-cake"
src="https://media.istockphoto.com/photos/freshly-made-chocolate-caramel-cake-picture-id1347247620?k=20&m=1347247620&s=612x612&w=0&h=ipGWe0lo-EkdQdTtai6wxKT0PbdRcNrrEuASpGtNkSY="
height="200px" width="200px">
<img class="second-cake"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTB-QMKB7in9V-QYdyXji-lGYkWcYUcrHjNvg&usqp=CAU"
height="200px" width="200">
<img class="third-cake"
src="https://images.unsplash.com/photo-1607478900766-efe13248b125?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MjB8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=500&q=60"
height="200px" width="200px">
<img class="fourth-cake"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSjKPuLozRC2n4MnlyKlPdTQm6keMAOJnlTwQ&usqp=CAU"
height="200px" width="200px">
</div>
</section>
</main>
<footer>
<section class="footer">
<h1> <button type="button" class="btn btn-secondary">facebook </button></h1>
<h2><button type="button" class="btn btn-secondary">twitter </button></h2>
<h3><button type="button" class="btn btn-secondary">instagram </button></h3>
<h4>Thank you for visiting</h4>
</section>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>