-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
73 lines (52 loc) · 2.22 KB
/
index.php
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
<?php
include("fheader.php");
?>
<!-- Start Banner Area -->
<section class="home-banner-area relative">
<div class="container">
<div class="row fullscreen d-flex align-items-center justify-content-center">
<div class="banner-content col-lg-8 col-md-12">
<h1 class="wow fadeIn" data-wow-duration="4s">LiBO</h1>
<h2 class="text-white">
USING THE LIBRARY </br> REMOTELY</br>
</h2>
<p>
Get started using the library online with these guides
</p>
<div class="input-wrap">
<form action="" class="form-box d-flex justify-content-between">
<input type="text" placeholder="Search Books" class="form-control" name="username">
<button type="submit" class="btn search-btn">Search</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- End Banner Area -->
<!-- Start About Area -->
<section class="about-area section-gap">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-lg-5 col-md-6 about-left">
<img class="img-fluid" src="img/about.jpg" alt="">
</div>
<div class="offset-lg-1 col-lg-6 offset-md-0 col-md-12 about-right">
<h1>
Over 2500 Books <br>
</h1>
<div class="wow fadeIn" data-wow-duration="1s">
<p>
There is a moment in the life of any aspiring astronomer that it is time to buy that first
telescope. It’s exciting to think
about setting up your own viewing station. In the life of any aspiring astronomer that it is
time to buy that first
telescope. It’s exciting to think about setting up your own viewing station.
</p>
</div>
<a href="courses.html" class="primary-btn">Explore Courses</a>
</div>
</div>
</div>
</section>
<?php include("ffooter.php"); ?>