-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
73 lines (73 loc) · 2.63 KB
/
About.html
File metadata and controls
73 lines (73 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>::: About :::</title>
<style>
body {
background: url("about.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: rgba(255, 255, 255, 0.8); /* Glass-like effect */
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 30px;
max-width: 800px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
color: #0077b6; /* Ocean blue */
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
img {
width: 200px;
height: auto;
margin: 20px 0;
}
p {
font-size: 1.2em;
line-height: 1.8;
color: #555;
}
b {
color: #0077b6; /* Highlighting in ocean blue */
}
a {
color: #0077b6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>About</h1>
<img src="Logo1.png" alt="openLABS Logo">
<p style="text-align:justify;">
<b>openLABS</b> is a forward-thinking software development company dedicated to creating open-source and user-friendly applications that empower educational institutions and organizations worldwide.
Our flagship product, <b>openBOARD</b>, is a comprehensive school management system ERP designed to streamline administrative tasks, enhance collaboration, and foster effective communication within schools.
</p>
<p style="text-align:justify;">
At openLABS, we believe in the power of technology to simplify complex processes and make education more accessible. Driven by a commitment to innovation and community-driven solutions, we strive to build tools that are intuitive, adaptable, and accessible to everyone.
</p>
</div>
</body>
</html>