-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathincredibleindia.html
More file actions
95 lines (76 loc) · 1.7 KB
/
incredibleindia.html
File metadata and controls
95 lines (76 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<title>Explore Incredible India</title>
<style>
body {
font-family: Arial;
background-color: #f2f2f2;
text-align: center;
}
header {
background-color: #2c3e50;
color: white;
padding: 20px;
}
.container {
margin-top: 30px;
}
.card {
background: white;
padding: 20px;
margin: 20px;
display: inline-block;
width: 250px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
button {
background-color: #27ae60;
color: white;
border: none;
padding: 10px;
cursor: pointer;
}
button:hover {
background-color: #219150;
}
</style>
</head>
<body>
<h2>Manali</h2>
<img src="https://images.unsplash.com/photo-1609947017136-9daf32a5eb16" width="300">
<h2>Goa</h2>
<img src="https://images.unsplash.com/photo-1512343879784-a960bf40e7f2" width="300">
<h2>Jaipur</h2>
<img src="https://images.unsplash.com/photo-1599661046289-e31897846e41" width="300">
<h2>Kerala</h2>
<img src="https://images.unsplash.com/photo-1589128777073-263566ae5e4d" width="300">
<header>
<h1>Explore Incredible India</h1>
<p>Discover Beautiful Tourist Destinations</p>
</header>
<div class="container">
<div class="card">
<h3>Manali</h3>
<p>Snow mountains and adventure sports in Himachal Pradesh.</p>
<button>Explore</button>
</div>
<div class="card">
<h3>Goa</h3>
<p>Famous for beaches, nightlife and Portuguese culture.</p>
<button>Explore</button>
</div>
<div class="card">
<h3>Jaipur</h3>
<p>The Pink City known for forts, palaces and heritage.</p>
<button>Explore</button>
</div>
<div class="card">
<h3>Kerala</h3>
<p>Backwaters, houseboats and beautiful greenery.</p>
<button>Explore</button>
</div>
</div>
</body>
</html>