-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.67 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Online Library
</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<div class="wrapper">
<header>
<div class="logo">
<img src="img/nana.jpg">
<h1 style="color: palevioletred; font-size: 20px;">MY ONLINE LIBRARY</h1>
</div>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="books.html">BOOKS</a></li>
<li><a href="registration.html">REGISTRATION</a></li>
<li><a href="login.html">LOGIN</a></li>
</ul>
</nav>
</header>
<section>
<div class="sec_img">
<br><br><br>
<div class="box">
<br><br><br><br>
<h1 style="text-align: center; font-size: 35px;">Welcome to library</h1><br>
<h1 style="text-align: center; font-size: 25px;">Opens at : 09am</h1>
<h1 style="text-align: center; font-size: 25px;">Closes at : 03pm</h1><br>
</div>
</div>
</section>
<footer>
<p style="color: black; text-align: center;">
<br>
Email:    [email protected] <br>
Insta:    sill9_pixi3
</p>
</footer>
</div>
</body>
</html>