-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (122 loc) · 4.97 KB
/
index.html
File metadata and controls
129 lines (122 loc) · 4.97 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
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pakistan Info</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-success">
<div class="container-fluid">
<a class="navbar-brand" href="#">Pakistan Info</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link active" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Image Slider -->
<div id="slider" class="carousel slide mt-3" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/Pakistan.jpg " class="d-block w-100" alt="Slide 1">
</div>
<div class="carousel-item">
<img src="img/Quaid.jpg" class="d-block w-100" alt="Slide 2">
</div>
<div class="carousel-item">
<img src="img/Iqbal.jpg" class="d-block w-100" alt="Slide 3">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#slider" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#slider" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
<!-- Provinces Cards -->
<div class="container my-5">
<h2 class="text-center mb-4">Provinces of Pakistan</h2>
<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="img/punjab.png" class="card-img-top" alt="Punjab">
<div class="card-body">
<h5 class="card-title">Punjab</h5>
<p class="card-text">Punjab is the most populous province of Pakistan, known for its fertile land and cultural heritage.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="img/Sindh.svg" class="card-img-top" alt="Sindh">
<div class="card-body">
<h5 class="card-title">Sindh</h5>
<p class="card-text">Sindh is home to Karachi, Pakistan's largest city, and has a rich history of the Indus Valley Civilization.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="img/Balochistan.jpg" class="card-img-top" alt="Balochistan">
<div class="card-body">
<h5 class="card-title">Balochistan</h5>
<p class="card-text">Balochistan is the largest province by area, known for its deserts, mountains, and natural resources.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="img/khyber-pakhtunkhwa.jpg" class="card-img-top" alt="KPK">
<div class="card-body">
<h5 class="card-title">Khyber Pakhtunkhwa</h5>
<p class="card-text">KPK is famous for its mountainous regions, cultural diversity, and historical significance.</p>
</div>
</div>
</div>
</div>
</div>
<!-- About Section -->
<section id="about" class="bg-light py-5">
<div class="container">
<h2 class="text-center mb-4">About Me</h2>
<div class="row justify-content-center">
<div class="col-md-8 text-center">
<p><strong>Name:</strong> Syed Shamoon Ali</p>
<p><strong>Father's Name:</strong> Syed Sadaqat Ali</p>
<p><strong>Roll No:</strong> TKC 357972</p>
<p><strong>Class:</strong> Hifz</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="bg-success text-white py-5">
<div class="container">
<h2 class="text-center mb-4">Contact Me</h2>
<div class="row justify-content-center">
<div class="col-md-6 text-center">
<p><strong>Email 1:</strong> syedshamoonali1@gmail.com</p>
<p><strong>Email 2:</strong> shamoonali218@gmail.com</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white text-center py-3">
© 2025 Pakistan Info | All rights reserved.
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>