-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibrary.html
64 lines (60 loc) · 1.92 KB
/
Library.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library Details</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 20px;
font-size: 24px;
}
.library-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.library-image {
width: 1000px;
height: 400px;
border-radius: 10px;
margin-bottom: 20px;
}
.library-info {
max-width: 600px;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
text-align: left;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Our Library</h1>
</header>
<section class="library-container">
<img src="library.jpg" alt="Library Image" class="library-image">
<div class="library-info">
<h2>About Our Library</h2>
<p>Our library is a peaceful place filled with a vast collection of books, research papers, and digital resources.
We provide a comfortable reading environment and access to the latest knowledge across various disciplines.</p>
<h2>Contact Details</h2>
<p><strong>Address:</strong> 123 Library Street, Knowledge City</p>
<p><strong>Phone:</strong> +123 456 7890</p>
<p><strong>Email:</strong> [email protected]</p>
</div>
</section>
</body>
</html>