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
135 lines (130 loc) · 4.14 KB
/
index.html
File metadata and controls
135 lines (130 loc) · 4.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!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 -->
<!-- CSS only -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header
class="d-flex justify-content-between bg-light px-4"
style="height: 150px"
>
<div class="align-self-center">
<img
src="images/logo.png"
style="width: 100px"
alt="Logo de la pagina"
/>
</div>
<div class="d-flex flex-column justify-content-around px-4">
<a class="align-self-end d-md-none" data-bs-toggle="collapse" href="#collapseExample" role="button" aria-expanded="false" aria-controls="collapseExample"
><i class="fas fa-bars fs-1" style="color: black"></i
></a>
<p style="font-style: italic; line-height: 1rem">
The best cakes in your town
<span class="d-block text-end">delivered to your door</span>
</p>
</div>
</header>
<nav id="collapseExample" class="collapse d-md-block mt-5">
<div class="d-flex justify-content-end">
<button type="btn" class=" me-2 w-25 btn btn-secondary">Home</button>
<button type="btn" class=" me-2 w-25 btn btn-secondary">Cakes</button>
<button type="btn" class=" me-2 w-25 btn btn-secondary">Orderin</button>
<button type="btn" class=" me-2 w-25 btn btn-secondary">Lessons</button>
</div>
</nav>
<main class="container mb-5">
<section class="welcome d-md-flex pt-5">
<div>
<h1>Welcome</h1>
<p class="mt-3 px-1">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Magnam
excepturi deleniti, consequuntur quam delectus rem nostrum id natus
tempora ullam adipisci laudantium neque minus vero facilis quasi
labore odit, quia nemo. Illo aliquam sint a ab non officia, deleniti
ipsa.
</p>
</div>
<div>
<img
class="img-fluid w-100"
src="http://via.placeholder.com/300x150"
alt=""
/>
</div>
</section>
<section class="cakes mt-5">
<div class="row">
<div class="col-6">
<img
class="img-fluid w-100"
src="http://via.placeholder.com/150x100"
alt=""
/>
</div>
<div class="col-6">
<img
class="img-fluid w-100"
src="http://via.placeholder.com/150x100"
alt=""
/>
</div>
</div>
<div class="row mt-5">
<div class="col-6">
<img
class="img-fluid w-100"
src="http://via.placeholder.com/150x100"
alt=""
/>
</div>
<div class="col-6">
<img
class="img-fluid w-100"
src="http://via.placeholder.com/150x100"
alt=""
/>
</div>
</div>
</section>
</main>
<footer class="p-4 bg-light">
<p style=>
Adress: Lorem ipsum dolor sit amet.
</p>
<p>Phone: 66666-6666-666</p>
<p>email: [email protected]</p>
<div class="social"></div>
</footer>
<!-- Add your markup here -->
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"
></script>
</body>
</html>