-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (74 loc) · 3.86 KB
/
Copy pathindex.html
File metadata and controls
87 lines (74 loc) · 3.86 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
<!DOCTYPE html>
<html>
<head>
<title>Web Development Minor Project</title>
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Great+Vibes&family=Old+Standard+TT:wght@700&family=Rampart+One&display=swap" rel="stylesheet">
</head>
<body>
<div align="center">
<header>Historical Places In India</header>
</div>
<div class="container">
<div class="box">
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/TajMahal.jpg/779px-TajMahal.jpg" alt="">
<h2>Taj Mahal</h2>
<p>Located in Agra</p>
<a href="https://en.wikipedia.org/wiki/Taj_Mahal" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://ihplb.b-cdn.net/wp-content/uploads/2018/06/Red-Fort-Delhi.jpg" alt="">
<h2>Red Fort</h2>
<p>Located in Delhi</p>
<a href="https://en.wikipedia.org/wiki/Red_Fort" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://assets.traveltriangle.com/blog/wp-content/uploads/2019/02/Golden-Temple.jpg" alt="">
<h2>Golden Temple</h2>
<p>Located in Amritsar</p>
<a href="https://en.wikipedia.org/wiki/Golden_Temple" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://youthincmag.com/wp-content/uploads/2021/06/lotus-temple_78361-1100.jpg" alt="">
<h2>Lotus Temple</h2>
<p>Located in Delhi</p>
<a href="https://en.wikipedia.org/wiki/Lotus_Temple" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://1.bp.blogspot.com/-L9DNa5Y-VU8/YNWaWe6XaJI/AAAAAAAAut4/5F70cmKBoMQht5DdEqvzkewFEBgUbhJswCLcBGAsYHQ/s2048/dq6pzhn97n96n6nm9p3w.jpg" alt="">
<h2>Sun Temple</h2>
<p>Located in Konark</p>
<a href="https://en.wikipedia.org/wiki/Konark_Sun_Temple" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://cdn.breathedreamgo.com/wp-content/uploads/2010/03/India-for-Beginners-custom-tours-5.jpg" alt="" style="height: 200px; margin-top: 20px;">
<h2>Ajanta Caves</h2>
<p>Located in Aurangabad</p>
<a href="https://en.wikipedia.org/wiki/Ajanta_Caves" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://ihplb.b-cdn.net/wp-content/uploads/2018/06/Qutub-Minar.jpg" alt="">
<h2>Qutub Minar</h2>
<p>Located in Delhi</p>
<a href="https://en.wikipedia.org/wiki/Qutb_Minar" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://www.nativeplanet.com/img/2017/05/1-31-1496217090.jpg" alt="">
<h2>Sanchi Stupa</h2>
<p>Located in Sanchi</p>
<a href="https://en.wikipedia.org/wiki/Sanchi" class="btn" target="_blank">Read more</a>
</div>
<div class="box">
<img src="https://static.theprint.in/wp-content/uploads/2018/12/Panorama_of_Jallianwala_Bagh-e1550674910748.jpg?compress=true&quality=80&w=376&dpr=2.6" alt="" style="height: 210px; margin-top: 15px;">
<h2>Jallianwala Bagh</h2>
<p>Located in Amritsar</p>
<a href="https://en.wikipedia.org/wiki/Jallianwala_Bagh_massacre" class="btn" target="_blank">Read more</a>
</div>
</div>
<div align="center">
<footer>©Jimut Kumar Sahoo</footer>
</div>
</body>
</html>