-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop.html
47 lines (42 loc) · 1.28 KB
/
top.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
<html>
<head>
<title>Top Frame</title>
<style>
body{
background-color: rgb(59, 126, 252);
}
h1{
color:white;
font-weight: bold;
font-size: 35;
text-decoration: none;
}
i{
text-align: center;
color:rgb(238, 16, 16);
font:50;
}
marquee{
margin-left: 20%;
background-color: yellow;
}
</style>
</head>
<body>
<img src="img1.jpg" width="125" height="115" style="float:left; margin-left:60px;">
<img src="img2.jpg" width="125" height="115" style="float:right; margin-right:60px;">
<marquee width="650" behavior="alternate">
<h1 id="h" face="sans-seript"><b><i>The Book Store</i></b>
</h1>
</marquee> <br>
<br>
<table width="100%" height="50%" cellspacing=10 >
<tr align="center">
<td> <a href="Home.html" target="_parent"><h1 face="Brush Script">HOME</h1></a></td>
<td> <a href="login.html" target="rightframe"><h1 face="Brush Script" >LOGIN</h1></a> </td>
<td> <a href="registration.html" target="rightframe"> <h1 face="Brush Script">REGISTER </h1></a> </td>
<td> <a href="catalogue.html" target="rightframe"> <h1 face="Brush Script">CATALOGUE</h1></a> </td>
</tr>
</table>
</body>
</html>