-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopframe.html
102 lines (71 loc) · 2.56 KB
/
topframe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
/* background:#5f5f5f; */
background: linear-gradient(to left, #615c5c, #717769);
}
#toptext{
color: #ffff;
font-weight: 600px;
font-size: 40px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Times, serif, Geneva, Tahoma, sans-serif;
}
table{
margin: 0;
padding: 0;
width: 100%;
border-collapse: collapse;
}
#tr1{
border-bottom: 2.5px solid black;
}
#tr2{
font-size: 18px;
width: 100%;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
/* background-color: #f5f5f5; */
background: linear-gradient(to left, #9b8b8b, #abbb97);
}
a{
text-decoration: none;
color: black;
padding: 3px;
margin: 15px;
width: 80px;
border-radius: 40px;
}
a:hover{
background-color:#acba9b ;
color: black;
transition: all 0.6s;
}
#toptext marquee{
font-weight: 40px;
font-size: 15px;
color: black;
}
</style>
</head>
<body >
<table display="block" overflow="hidden">
<tr align="center" id="tr1">
<td><img src="./abesec.png" alt="" width="250px"></td>
<td id="toptext" colspan="4" >ABES ENGINEERING COLLEGE: BOOK STORE
<marquee behavior="scrolling" direction="left" scrollamount="5">Harsh Raj</marquee>
</td>
</tr>
<tr id="tr2" >
<td><a href="#">Home</a></td>
<td><a href="./login.html" target="cols2">Login</a></td>
<td><a href="./registration/index.html" target="cols2">Registration</a></td>
<td><a href="./catalogue/index.html " target="cols2">Catalogue</a></td>
<td><a href="./cart.html" target="cols2">Cart</a></td>
</tr>
</table>
</body>
</html>