-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto.html
63 lines (62 loc) · 1.85 KB
/
photo.html
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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="In this site you can see the croissant" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/css/styles.css" />
<title>How sexy croissants can be - Croissant.com</title>
</head>
<body>
<div class="container">
<h1>🥐 Pictures of Croissants 🥐</h1>
<div class="row">
<div class="col-sm-3">
<img
class="img-fluid rounded shadow mt-5"
src="/images/croissant-1.jpg"
alt="Croissants in a plate"
/>
</div>
<div class="col-sm-5">
<img
class="img-fluid rounded shadow"
src="/images/croissant-2.webp"
alt="Inside view of croissants"
/>
</div>
<div class="col-sm-3">
<img
class="img-fluid rounded shadow mt-5"
src="/images/croissants-03.jpeg"
alt="Croissants with fruits"
/>
</div>
</div>
<div class="navigation-links m-5">
<a class="principal-links" href="/" title="Takes you to homepage"
>Homepage</a
>
<a
class="principal-links"
href="/photo.html"
title="See croissants images"
>Photo</a
>
<a
class="principal-links"
href="/contact.html"
title="Get the contact information"
>Contact</a
>
</div>
</div>
</body>
</html>