-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewBooks.html
116 lines (112 loc) · 1.77 KB
/
ViewBooks.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<html>
<head>
<meta charset="ISO-8859-1">
<title>Book Store</title>
<style>
*{
box-sizing: border-box;
}
body
{
background-image: url("Photo.jpg");
}
#topmid{
border:0px solid black;
color:#FFFFFF;
text-align: center;
font-weight: bold;
margin-top: 0px;
padding-left: 30%;
font-style: oblique;
font-size:38px;
}
a:hover{
color:red;
}
a:link{
color: green;
text-decoration: none;
}
.tab{
border:1px black solid;
background-color: #FFE5CC;
margin-left: 45%;
max-width:700px;
color:green;
font-weight: bold;
font-style:normal;
text-align:center;
font-size: 22px;
margin-bottom:10px;
padding:10px;
padding-top:2px;
}
.home{
border:1px black solid;
background-color: #ccffcc;
margin-left: 1%;
width:200px;
color:blue;
font-weight: bold;
font-style:italic;
text-align:center;
font-size: 25px;
margin-bottom:10px;
padding:10px;
float:left;
clear:both;
}
table{
border:2px solid black;
text-align: center;
padding:5px;
cellspacing:2px;
width:680px;
}
tr:hover {
background-color: #f5f5f5;
color:blue;
}
td{
padding:10px;
border:1px solid black;
}
th{
color:green;
font-size:20px;
}
.yel{
color:yellow;
}
.red{
color:red;
}
.green{
color:green;
}
.hd{
font-size:25px;
}
.brown{
color:brown;
}
</style>
</head>
<body>
<div id="topmid">
<h1>Welcome to Online Book Store</h1>
</div>
<div class="home">
<a href="index.html">Home</a>
</div>
<div class="home">
<a href="index.html">Login</a>
</div>
<div class="home">
<a href="viewbook">Books Available</a>
</div>
<div class="home">
<a href="index.html">Logout</a>
</div>
</body>
</html>