Intro
Intro
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
header {
background-color: #00796b;
color: white;
padding: 20px;
text-align: center;
font-size: 24px;
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
max-width: 900px;
margin: 0 auto;
.librarian-info {
display: flex;
align-items: center;
background-color: white;
padding: 20px;
border-radius: 8px;
.librarian-info img {
border-radius: 50%;
margin-right: 20px;
width: 150px;
height: 150px;
object-fit: cover;
.library-intro, .librarian-message {
text-align: justify;
background-color: white;
padding: 20px;
border-radius: 8px;
.library-intro img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 0;
color: #00796b;
</style>
</head>
<body>
<header>
</header>
<div class="container">
<div class="library-intro">
<p>Our public library is a vibrant community hub dedicated to fostering a love of reading and
lifelong learning. With a diverse collection of books, digital resources, and community programs, we
strive to meet the needs of our patrons and support their educational and recreational interests. Our
friendly staff is here to assist you and ensure that your experience at the library is both enjoyable and
enriching.</p>
</div>
<div class="librarian-info">
<div class="librarian-intro">
Muhammad Saleem's extensive experience makes him a skilled librarian, with deep expertise in
research, book cataloging, and library management. He is continuously striving to improve library
services and is proficient in applying new technologies and methods..</p>
</div>
</div>
<div class="librarian-message">
<h2>Librarian's Message</h2>
<p>Welcome to our public library, where we believe in the power of books to transform lives. We
are committed to providing a welcoming space for learning, creativity, and exploration. Whether you're
here to find a good read, do some research, or simply relax, we are here to assist you in any way
possible.</p>
</div>
</div>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
Rul
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
padding: 0;
color: #333;
.container {
max-width: 1000px;
padding: 20px;
background-color: white;
border-radius: 8px;
h1 {
text-align: center;
color: #4CAF50;
font-size: 2.5em;
margin-bottom: 20px;
.rules-list {
margin: 20px 0;
.rules-list h2 {
font-size: 1.8em;
color: #4CAF50;
border-bottom: 2px solid #4CAF50;
padding-bottom: 10px;
.rules-list ul {
list-style-type: none;
padding: 0;
.rules-list li {
background-color: #f9f9f9;
border-radius: 5px;
margin-bottom: 10px;
padding: 15px;
font-size: 1.1em;
line-height: 1.6;
.rules-list li::before {
color: #4CAF50;
font-weight: bold;
font-size: 1.5em;
vertical-align: middle;
margin-right: 10px;
/* Responsive Styles */
h1 {
.rules-list h2 {
.rules-list li {
</style>
</head>
<body>
<div class="container">
<div class="rules-list">
<h2>General Conduct</h2>
<ul>
<li>Food and drinks are not allowed in the library to protect books and equipment.</li>
</ul>
<h2>Borrowing Materials</h2>
<ul>
<li>Return borrowed items on or before the due date to avoid late fees.</li>
<li>Notify the library immediately if a borrowed item is lost or damaged.</li>
</ul>
<h2>Use of Facilities</h2>
<ul>
<li>Computers and other equipment should be used responsibly and for library-related
activities only.</li>
</ul>
<ul>
</ul>
</div>
</div>
</body>
</html>
Tim
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library Hours</title>
<style>
body {
margin: 0;
padding: 20px;
color: #333;
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: white;
border-radius: 8px;
h1 {
text-align: center;
color: #4CAF50;
font-size: 2.5em;
margin-bottom: 20px;
h2 {
margin: 0 0 10px;
.table-container, .calendar-container {
margin-bottom: 40px;
table {
width: 100%;
border-collapse: collapse;
margin: 0 auto;
table, th, td {
th, td {
padding: 12px;
text-align: center;
th {
background-color: #4CAF50;
color: white;
td {
background-color: #f9f9f9;
.calendar {
display: inline-block;
margin: 0 auto;
padding: 10px;
background-color: white;
border-radius: 8px;
}
.calendar table {
border: none;
width: 100%;
table-layout: fixed;
padding: 10px;
text-align: center;
.calendar th {
background-color: #4CAF50;
color: white;
.calendar td {
background-color: #f9f9f9;
.calendar .today {
/* Responsive Styles */
h1 {
font-size: 2em;
h2 {
font-size: 1.5em;
}
th, td {
padding: 8px;
font-size: 0.9em;
table {
font-size: 0.9em;
h1 {
font-size: 1.5em;
h2 {
font-size: 1.2em;
th, td {
padding: 6px;
font-size: 0.8em;
table {
font-size: 0.8em;
</style>
</head>
<body>
<div class="container">
<!-- Library Hours Table -->
<div class="table-container">
<h2>Library Hours</h2>
<table>
<thead>
<tr>
<th>Day</th>
<th>Opening Hours</th>
</tr>
</thead>
<tbody>
<tr>
<td>Monday</td>
</tr>
<tr>
<td>Tuesday</td>
</tr>
<tr>
<td>Wednesday</td>
</tr>
<tr>
<td>Thursday</td>
</tr>
<tr>
<td>Friday</td>
</tr>
<tr>
<td>Saturday</td>
</tr>
<tr>
<td>Sunday</td>
<td>Closed</td>
</tr>
</tbody>
</table>
</div>
<div class="calendar-container">
<div class="calendar">
<h2 id="calendar-month-year"></h2>
<table id="calendar-table">
<thead>
<tr>
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</thead>
<tbody id="calendar-body">
</tbody>
</table>
</div>
</div>
</div>
<script>
function generateCalendar() {
document.getElementById('calendar-month-year').textContent = date.toLocaleString('default',
{ month: 'long', year: 'numeric' });
cell.textContent = day;
row.appendChild(cell);
calendarBody.appendChild(row);
row = document.createElement('tr');
window.onload = generateCalendar;
</script>
</body>
</html>
Vi
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background-color: #f4f4f4;
margin: 0;
padding: 0;
color: #333;
.container {
max-width: 1200px;
padding: 20px;
background-color: white;
border-radius: 8px;
h1 {
text-align: center;
color: #4CAF50;
font-size: 2.5em;
margin-bottom: 20px;
.section {
margin-bottom: 40px;
}
.section h2 {
font-size: 1.8em;
color: #333;
margin-bottom: 10px;
padding-bottom: 5px;
.section p {
font-size: 1.1em;
line-height: 1.6;
color: #555;
.section p strong {
color: #4CAF50;
/* Responsive Styles */
h1 {
.section h2 {
.section p {
}
}
</style>
</head>
<body>
<div class="container">
<div class="section">
<h2>Vision</h2>
</div>
<div class="section">
<h2>Mission</h2>
</div>
</div>
</body>
</html>
Ser
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Library Services</title>
<style>
body {
margin: 0;
padding: 0;
.header {
background-color: #4CAF50;
padding: 20px;
text-align: center;
color: white;
.header h1 {
margin: 0;
font-size: 2.5em;
.container {
max-width: 1400px;
background-color: white;
border-radius: 9px;
h2 {
text-align: center;
margin-bottom: 40px;
.service-section {
display: flex;
justify-content: space-between;
margin-bottom: 40px;
.service {
flex: 1 1 30%; /* Allows for three services in one line on larger screens */
margin: 10px;
padding: 20px;
text-align: center;
background-color: #f9f9f9;
border-radius: 10px;
.service img {
width: 50px;
height: 50px;
margin-bottom: 15px;
}
.service h3 {
margin-bottom: 10px;
.service p {
font-size: 1em;
color: #666;
.service {
.service {
</style>
</head>
<body>
<div class="header">
<h1>Library Services</h1>
</div>
<div class="container">
<h2>Our Services</h2>
<div class="service-section">
<div class="service">
<h3>Book Borrowing</h3>
<p>Borrow books from our extensive collection of physical and digital materials available to
members.</p>
</div>
<div class="service">
<img src="https://cdn-icons-png.freepik.com/256/8890/8890160.png?semt=ais_hybrid"
alt="Free Wi-Fi">
<h3>Free Wi-Fi</h3>
<p>Access free high-speed internet on your personal devices at any of our library
branches.</p>
</div>
<div class="service">
<img src="https://cdn-icons-png.freepik.com/256/4515/4515712.png?semt=ais_hybrid"
alt="Events and Workshops">
</div>
</div>
<div class="service-section">
<img src="https://cdn-icons-png.freepik.com/256/5531/5531967.png?semt=ais_hybrid"
alt="Research Assistance">
<h3>Research Assistance</h3>
<p>Get expert help with research from our librarians, including access to academic databases
and archives.</p>
</div>
<div class="service">
<img src="https://png.pngtree.com/png-vector/20220218/ourmid/pngtree-children-icon-png-
image_4392953.png" alt="Children's Section">
<h3>Children’s Section</h3>
<p>A dedicated space for children’s books, reading programs, and learning activities.</p>
</div>
<div class="service">
<img src="https://www.shutterstock.com/image-vector/quiet-rooms-concept-icon-inspiring-
260nw-2113643477.jpg" alt="Study Spaces">
<p>Book a study space or use our open seating areas to read, study, or collaborate with
peers.</p>
</div>
</div>
</div>
</body>
</html>
Staff
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Professional Staff</title>
<style>
body {
margin: 0;
padding: 20px;
h1 {
.staff-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
.staff-member {
background-color: #fff;
border-radius: 10px;
padding: 20px;
margin: 20px;
width: 250px;
text-align: center;
.staff-member img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
.staff-member h3 {
margin: 10px 0;
font-size: 1.2em;
.staff-member p {
margin: 5px 0;
color: #555;
</style>
</head>
<body>
<div class="staff-container">
<div class="staff-member">
<p>Position: Cataloger/Classifier</p>
<p>Email: [email protected]</p>
</div>
<div class="staff-member">
<p>Position: Librarian</p>
</div>
<div class="staff-member">
<p>Position: Librarian</p>
</div>
</div>
</body>
</html>
Con
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Us</title>
<style>
body {
margin: 0;
padding: 20px;
.contact-container {
max-width: 700px;
background-color: #fff;
padding: 30px;
border-radius: 10px;
h1 {
text-align: center;
margin-bottom: 20px;
.contact-info {
text-align: center;
margin-top: 30px;
.contact-info p {
margin: 10px 0;
font-size: 18px;
.contact-info img {
width: 24px;
height: 24px;
vertical-align: middle;
margin-right: 8px;
.map-container {
margin-top: 30px;
iframe {
width: 100%;
height: 300px;
border: none;
border-radius: 5px;
.social-media {
text-align: center;
margin-top: 30px;
.social-media a {
margin: 0 10px;
display: inline-block;
.social-media img {
width: 30px;
height: 30px;
}
</style>
</head>
<body>
<div class="contact-container">
<h1>Contact Us</h1>
<div class="contact-info">
<p><img src="https://upload.wikimedia.org/wikipedia/commons/6/6c/Phone_icon.png"
alt="Phone"> Phone: +92 3038772743</p>
<p><img src="https://cdn4.iconfinder.com/data/icons/social-media-logos-6/512/112-
gmail_email_mail-512.png" alt="Email"> Email: [email protected]</p>
<p><img
src="https://i.pinimg.com/originals/66/1e/98/661e98a8e38f681575da93d0a1c3f4fc.png"
alt="Location"> Address: Khanqah Sharif Bahawalpur</p>
</div>
<div class="social-media">
<h3>Follow Us</h3>
<a href="https://www.facebook.com/profile.php?id=100034215050432&mibextid=ZbWKwL"
target="_blank"><img src="https://encrypted-tbn0.gstatic.com/images?
q=tbn:ANd9GcTIPQivbrXaeLxe8UzyawJ2O-vTfZlsYhkRgQ&s" alt="Facebook"></a>
<a href="https://www.instagram.com/muhammad.saleem8772?igsh=Y3p4cGZpMHJoaWNs"
target="_blank"><img src="https://img.freepik.com/premium-vector/instagram-logo-vector_768467-
330.jpg" alt="Instagram"></a>
</div>
</div>
</body>
</html>