-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlandmarks.html
More file actions
124 lines (118 loc) · 5.52 KB
/
Copy pathlandmarks.html
File metadata and controls
124 lines (118 loc) · 5.52 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
<!-- DEVELOPER: Joshua Esteves, IS117-001, Fall 2022 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Joshua's Website</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<!--Bootstrap navbar -->
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="images/ICON.png" alt="Logo" width="30" height="24" class="d-inline-block align-text-top">
PT Travel
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="landmarks.html">Landmarks</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
More
</a>
<ul class="dropdown-menu dropdown-menu-end">
<li><a class="dropdown-item" href="pricing.html">Pricing</a></li>
<li><a class="dropdown-item" href="contact.html">Contact Me</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Card -->
<div class="landmarks">
<div class="card mx-auto my-4" style="max-width: 80rem;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="images/LM1.jpg" class="card-img" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Sanctuary of Our Lady of the Rosary of Fátima</h5>
<p class="card-text">This Sanctuary is dedicated to "Our Lady of Fatima"
<br>"Our Lady of Fatima" is a Catholic title for Mary, the mother of Jesus.
<br>There are multiple Chapels such as the Sacred Lausperene and the Chapel of Apparitions.
<br>
<br>The Sanctuary is located in Ourém, Portugal.
<br>
</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="card mx-auto my-4" style="max-width: 80rem;">
<div class="row no-gutters">
<div class="col-md-4 ">
<img src="images/LM2.jpg" class="card-img" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Belém Tower</h5>
<p class="card-text">The tower of Belém is officially the Tower of Saint Vincent.
<br> It also served as a ceremonial gateway to Lisbon for explorers.
<br>It has been a UNESCO World Heritage Site since 1983.
<br>
<br> The Tower of Belém is located in Lisbon, Portugal.
</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="card mx-auto my-4" style="max-width: 80rem;">
<div class="row no-gutters">
<div class="col-md-4 ">
<img src=images/LM3.jpg class="card-img" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Park and National Palace of Pena</h5>
<p class="card-text">It was originally a Chapel dedicated to Our Lady of Pena
<br>It is a National Monument of Portugal and one of the Seven Wonders of Portugal.
<br>It is also a UNESCO World Heritage Site.
<br>
<br>Park and National Palace of Pena is located in Sintra, Portugal.
</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer page-footer font-small ">
<div class="container">
<div class="row">
<span class="text-muted">© Joshua Esteves, 2022. | Terms Of Use | Privacy Statement</span>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
</body>
</html>