-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
86 lines (74 loc) · 2.16 KB
/
welcome.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Our Digital Library</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #2189de;
color: white;
padding: 40px;
text-align: center;
}
main {
padding: 20px;
}
.intro {
margin-bottom: 40px;
}
.intro h2 {
color: #4CAF50;
}
.get-started {
text-align: center;
}
.get-started h2 {
color: #4CAF50;
}
.explore-btn {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.explore-btn:hover {
background-color: #45a049;
}
footer {
background-color: #25b7eb;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Our Digital Library</h1>
<p>Explore, Learn, and Discover</p>
</header>
<main>
<section class="intro">
<h2>About Us</h2>
<p>Welcome to our digital library, where you can access a vast collection of books, articles, journals, and more. Our mission is to provide knowledge and resources to all individuals, fostering learning and intellectual growth.</p>
</section>
<section class="get-started">
<h2>Get Started</h2>
<p>Ready to dive into the world of knowledge? Click below to explore more!</p>
<a href="file:///C:/Users/risha/Desktop/Css/login2.html" class="explore-btn">Explore More</a>
</section>
</main>
<footer>
<p>© 2024 Digital Library. All rights reserved.</p>
</footer>
</body>
</html>