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
103 lines (79 loc) · 4.37 KB
/
index.html
File metadata and controls
103 lines (79 loc) · 4.37 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
<!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">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <title>Responsive Cake webpage</title>
<!-- Add a link to your css file here -->
</head>
<body>
<div class="wrapper">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="navbackground container-fluid">
<a class="navbar-brand" href="#"><img class="nav-logo" src="https://i.imgur.com/t5lJhRj.png" alt=""></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation" style="border:none;">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup">
<div class="nav1 navbar-nav">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link active" href="#">Features</a>
<a class="nav-link active" href="#">Pricing</a>
<a class="nav-link active" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
</div>
</div>
<p class="tagline">The best cakes in town delivered to your door</p>
</div>
</nav>
<!-- Just an image -->
<!-- should appear on desktop -->
<nav class="hidden navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<div class="collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link" href="#">Features</a>
<a class="nav-link" href="#">Pricing</a>
<a class="nav-link" href="#">Selection</a>
</div>
</div>
</div>
</nav>
<div class="text container-fluid">
<div class="middle-image"></div>
<div class="paragraph">
<h1>Welcome</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
<div class="mobile"></div>
</div>
<!-- image -->
<div class="images-container">
<img src="https://images.unsplash.com/photo-1542826438-bd32f43d626f?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1756&q=80" class="cake-images" alt="...">
<img src="https://images.unsplash.com/photo-1581344797783-b6f505d6300e?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80" class="cake-images" alt="Fun Cupcakes">
<img src="https://images.unsplash.com/photo-1557979619-445218f326b9?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80" class="cake-images" alt="Bespoke Cakes">
<img src="https://images.unsplash.com/photo-1596567501792-82749861314d?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1474&q=80" class="cake-images" alt="Unique Wedding Cakes">
</div>
<!-- footer -->
<footer class="footer-distributed">
<div class="footer-right">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
</div>
<div class="footer-left">
<p class="footer-links">
<a class="link-1" href="#">Home</a>
<a class="link-1" href="#">About</a>
<a class="link-1" href="#">Contact</a>
</p>
</div>
<p class="footnote" >Created for fun © 2020</p>
</footer>
</div>
</body>
</html>