-
Notifications
You must be signed in to change notification settings - Fork 0
/
pre-winter.html
76 lines (75 loc) · 3.22 KB
/
pre-winter.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rainy Season</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="season.css">
</head>
<body>
<div class="container mt-5">
<h1 class="text-primary text-center">RAINY SEASON</h1>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3">
<!-- Card 1 -->
<div class="col">
<div class="card shadow-custom bd">
<img src="./images/Munnar.jpg" class="card-img-top" alt="Card Image">
<div class="card-body">
<h4 class="card-title">Munnar</h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quo, sapiente!</p>
<a href="#" class="btn btn-primary">Explore</a>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="col">
<div class="card shadow-custom">
<img src="./images/Abbey_falls.jpg" class="card-img-top" alt="Card Image">
<div class="card-body">
<h4 class="card-title">Abbey Falls</h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quo, sapiente!</p>
<a href="#" class="btn btn-primary">Explore</a>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="col">
<div class="card shadow-custom">
<img src="./images/Seven_sister_falls.jpg" class="card-img-top" alt="Card Image">
<div class="card-body">
<h4 class="card-title">Seven Sister Falls</h4>
<p class="card-text">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quo, sapiente!</p>
<a href="#" class="btn btn-primary">Explore</a>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="col">
<div class="card shadow-custom">
<img src="./images/Valleys_of_flowers.jpg" class="card-img-top" alt="Card Image">
<div class="card-body">
<h4 class="card-title">Valleys of Flowers</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Explore</a>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="col">
<div class="card shadow-custom">
<img src="./images/Rajmachi_fort.jpg" class="card-img-top" alt="Card Image">
<div class="card-body">
<h4 class="card-title">Rajamachi Fort</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-info">Explore</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>