forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sustainabeltravel.html
90 lines (90 loc) · 4.86 KB
/
sustainabeltravel.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sustainable Travel Tips</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="sustanabletravel.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid py-5 bg-light">
<h1 class="text-center mb-5">Sustainable Travel Tips</h1>
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-4 g-4">
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1530521954074-e64f6810b32d" class="card-img-top" alt="Public Transportation">
<div class="card-body">
<h5 class="card-title">Use Public Transport 🚌</h5>
<p class="card-text">Opt for public transportation to reduce your carbon footprint while exploring new places.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1523293182086-7651a899d37f" class="card-img-top" alt="Reusable Water Bottle">
<div class="card-body">
<h5 class="card-title">Carry a Reusable Water Bottle 🚰</h5>
<p class="card-text">Reduce plastic waste by bringing your own reusable water bottle on your travels.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1528190336454-13cd56b45b5a" class="card-img-top" alt="Local Food">
<div class="card-body">
<h5 class="card-title">Eat Local 🍲</h5>
<p class="card-text">Support local economies and reduce food miles by enjoying local cuisine.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1517164850305-99a3e65bb47e" class="card-img-top" alt="Eco-friendly Accommodations">
<div class="card-body">
<h5 class="card-title">Choose Eco-friendly Stays 🏡</h5>
<p class="card-text">Select accommodations that prioritize sustainability and environmental conservation.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1527483374069-ad47fefd6caa" class="card-img-top" alt="Bicycle">
<div class="card-body">
<h5 class="card-title">Bike Around 🚲</h5>
<p class="card-text">Explore destinations on a bicycle to reduce emissions and stay active.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1589365252845-092198ba5334" class="card-img-top" alt="Reusable Shopping Bag">
<div class="card-body">
<h5 class="card-title">Pack a Reusable Bag 🛍️</h5>
<p class="card-text">Bring a foldable, reusable shopping bag to avoid using plastic bags while traveling.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81" class="card-img-top" alt="Wildlife Conservation">
<div class="card-body">
<h5 class="card-title">Support Wildlife Conservation 🐘</h5>
<p class="card-text">Choose ethical wildlife experiences that prioritize animal welfare and conservation.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://images.unsplash.com/photo-1532996122724-e3c354a0b15b" class="card-img-top" alt="Carbon Offset">
<div class="card-body">
<h5 class="card-title">Offset Your Carbon Footprint 🌳</h5>
<p class="card-text">Contribute to carbon offset programs to neutralize the environmental impact of your travels.</p>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>