-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
47 lines (46 loc) · 2.26 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="./css/bootstrap.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark"style="background-color: #00b8ea;">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">The CityLibrary® :::a CS418 WebApp project</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./about.html">| About Us |</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./virtualtour.html">| Virtual Tour |</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./books.html">| Books |</a>
</li>
</ul>
<span class="navbar-text">
Welcome, Guest
</span>
</div>
</div>
</nav>
<div class="marginCenter">
<h3 style="color: #39b4da">About the CityLibrary®</h3>
<hr>
<p>We are your premier digital library. Our collection has the widest variety of books and lots of other digital content, for your education as well as your entertainment. You can take a virtual tour, of our world-class facilities and be amazed at all what we have in stock for you, your family and friends.</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.</p>
</div>
<footer class="footer">
<div class="container">
<span class="text-muted float-end">Hung Le - CS418 - 2021</span>
</div>
</footer>
</body>
</html>