-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathintro.html
71 lines (60 loc) · 1.78 KB
/
intro.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Studious Me</title>
<style>
body {
background-image: url("library.jpg");
background-size: 1366px 768px;
background-repeat: no-repeat;
}
h1 {
font-family: Gill Sans, Verdana;
font-size: 60px;
color: #2266FF;
}
p{
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
color: #FFFFFF;
}
#header {
background-color: white;
color:white;
text-align:left;
padding: 5px;
}
#footer {
color:black;
clear:both;
text-align:center;
padding:5px;
margin-top: 30px;
}
</style>
</head>
<body>
<div id="header">
<pre><h1><img src="images\librarysymbol.gif" alt="Logo"
style="float:left;width:100px;height:100px;border-radius: 20px 20px 20px 20px;"> STUDIOUS ME</h1></pre>
</div>
<div style="background-color:white; color:black; padding:20px;margin-left:200px;margin-top:20px; width:500px;border-radius: 20px 20px 20px 20px;">
<p style="color:black;text-align:center;font-size: 30px"><b>Welcome to 24x7 Online Library</b></p>
<p style="color:black;text-align:center;font-size: 24px">Log in as</p>
<a href="userlogin.php">
<img src="images\user.png" alt="UserImage" style="width:150px;height:150px;border:0">
</a>
<a href="adminlogin.php">
<img src="images\admin.png" alt="AdminImage" style="width:150px;height:150px;border:0">
</a>
<a href="guesthomepage.html">
<img src="images\guest.png" alt="GuestImage" style="width:150px;height:150px;border:0">
</a>
<pre><p style="color:black;text-align:left;font-size: 24px"> USER ADMIN GUEST</p></pre>
<a href="registration.php" style="font-size: 24px;text-decoration:none">Create an account</a>
</div>
<div id="footer">
Copyright © 2014 | Team Ozil 11
</div>
</body>
</html>