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
58 lines (49 loc) · 2.69 KB
/
index.html
File metadata and controls
58 lines (49 loc) · 2.69 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
<!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="../bootstrap-5.0.0-beta2-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="../HTML-CSS-Coursework-Week3/style.css">
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="../HTML-CSS-Coursework-Week3/img/cupcake-transparent.png" width="30px"></a>
<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="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container header">
<h1 class="header-title">The best cakes in town delivered to your door</h1>
</div>
<!-- BODY -->
<h1 class="m-t">
<small class="text-muted">Welcome</small>
</h1>
<p class="lorem-p">Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem quis, mollitia cupiditate quos dolore ipsa eligendi minus! Quibusdam, eligendi architecto. Hic beatae tempora temporibus vero inventore eos illum voluptatum nihil!</p>
<img src="img/tony-eight-media--uZNyLofoPw-unsplash.jpg" alt="Cake1" class="img-fluid white-cake">
<img src="img/conor-luddy-mKaszdVnteY-unsplash.jpg" class="rounded float-start w-50 p-2" alt="...">
<img src="img/charlota-blunarova-qGIMAzoe4kw-unsplash.jpg" class="rounded float-end w-50 p-2" alt="...">
<img src="img/mike-meeks-zk-fclJdGas-unsplash.jpg" class="rounded float-end w-50 p-2" alt="...">
<img src="img/shivam-mistry-csv-5A-5JGc-unsplash.jpg" class="rounded float-end w-50 p-2" alt="">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
</body>
</html>