-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutpage.jsp
More file actions
55 lines (55 loc) · 1.74 KB
/
aboutpage.jsp
File metadata and controls
55 lines (55 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/logo.png" />
<link rel="stylesheet" href="css/shared.css">
<link rel="stylesheet" href="css/about.css">
<title>About - Library Management Portal</title>
</head>
<body>
<header class="main-header">
<nav class="main-nav">
<div class="logo">
<a href="howe">
<img src="img/logo.png" alt="Logo" width="40" height="40">
</a>
</div>
<a href="howe" class="astu">A.S.T.U</a>
<ul class="main-nav-items">
<li class="main-nav-item"><a href="borrow">Borrowed</a></li>
<li class="main-nav-item"><a href="return">Return</a></li>
<li class="main-nav-item"><a href="about">About</a></li>
<li class="main-nav-item"><a href="logout">Logout</a></li>
</ul>
</nav>
</header>
<main>
<section class="about-section">
<h1>About the Library Management Portal</h1>
<p>This portal allows the simplification of library book management by making it digital.</p>
<h2>Developed By</h2>
<ul class="developer-list">
<li>Abdisa Gebi</li>
<li>Bekam Birhanu</li>
<li>Ergabus Hirpha</li>
<li>Lelisa Waktola</li>
<li>Mahfuz Redwan</li>
<li>Negasa Reta</li>
<li>Sengi Merga</li>
</ul>
<h2>Contact Information</h2>
<p>Email: <a href="mailto:codebase@gmail.com">codebase@gmail.com</a></p>
<p>Phone: +2251900235489</p>
<h2>System Features</h2>
<ul class="features-list">
<li>Borrow books</li>
<li>Return books</li>
<li>View available books</li>
<li>View borrowed books</li>
</ul>
</section>
</main>
</body>
</html>