-
Notifications
You must be signed in to change notification settings - Fork 0
/
Login.html
187 lines (167 loc) · 4.03 KB
/
Login.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<html>
<head>
<title>ONlineShop</title>
<style type="text/css">
body
{
background-color: gray;
color:black;
}
a
{
color:white;
font-size:25px;
text-decoration: none;
}
.round
{
background-color: black;
color:black;
border-radius:10px;
height: 18px;
}
.round:hover
{
background-color: blue;
color:black;
border-radius:10px;
height: 20px;
}
.roundmain
{
background-position: center;
background-size: 70% 150%;
background-repeat: no-repeat;
background-image: url("pic/c5.png");
height:225px;
width:114%;
font-size:50px;
font-weight: bold;
color:white;
border-radius:10px;
text-shadow: 6px 2px 4px gray;
}
#box{
width: 55%;
height: 100px;
border-radius: 0px 50px 0px 50px;
background-color: silver;
box-shadow: 6px 10px 6px gray;
}
.divb{
width: 180px;
height: 40px;
border: 2px solid;
background-color: green;
color: white;
border-color: red;
border-radius: 0px 30px 0px 30px;
font-size: 25pt;"
}
.divb:hover{
background-color: blue;
width: 190px;
height: 40px;
border: 2px solid;
color: white;
border-color: red;
border-radius: 0px 30px 0px 30px;
font-size: 27pt;
}
.divp{
background-color: black;
height:40px;
width:340px;
color: white;
font-size: 30px;
border-radius: 30px;
padding: 10px;
vertical-align: middle;
margin-bottom: 20px;
}
.divc{
height: 30PX;
width: 100px;
background-color: black;
color: white;
margin-top: 30px;
margin-right: 15px;
font-size: 20px;
line-height: 20px;
}
input{
width: 240px;
padding: 3px;
padding-left: 10px;
border:0px;
border-bottom: 3px solid;
}
img{
border-radius: 10px;
height: 230px;
width: 360px;
box-shadow: 6px 10px 10px 5px gray;
}
img:hover{
border-radius: 10px;
height: 232px;
width: 360px;
box-shadow: 8px 12px 12px 8px gray;
}
p{
font-size: 12pt;
text-align: justify;
}
</style>
</head>
<body>
<table border="0" align="center" cellspacing="4" style="border-radius: 10px;" height="20%" width="97%" bgcolor="#efeeff">
<tr>
<td colspan=6 align="center" class="roundmain" >On Line Laptop Shop</td>
</tr>
<tr>
<td align="center" class="round" width="5%">
<a href="Home.html"><div>Home</div></a>
</td>
<td align="center" class="round" width="5%">
<a href="category.html"><div>Category</div></a>
</td>
<td align="center" class="round" width="5%">
<a href="aboutus.html"><div>About us</div></a>
</td>
<td align="center" class="round" width="5%">
<a href="feedback.html"><div>Feed back</div></a>
</td>
<td align="center" class="round" width="5%">
<a href="Register.html"><div>Register</div></a>
</td>
<td align="center" class="round" width="5%">
<a href="Login.html"><div>Login</div></a>
</td>
</tr>
</table>
<marquee width="97%" align="center" hspace="20px" style=" border-radius: 10px; background-color: gray; font-weight:bold; font-size:16pt; color: white;">You will get all sort of famous and popular laptops from this on-line shop.We have pay on delivery service so you don't have to worry for product Quality........... <b>You must be register and login Before you Purchase laptop</b> </marquee>
<table style="background-color: white; border-radius: 10px;"
cellpadding="0px" height="70%" align="center" width="97%">
<tr><td><table align="center" height="60%" style="border-radius: 10px; background-color: gray;"><form>
<tr>
<td colspan="6" align="center">
ENTER EMAIL:
<input type="text" name="EMAIL" placeholder="e.g abd123@gmail.com">
<br><br><br>
ENTER PASSWORD:
<input type="password" name="PASSWORD" placeholder=" 123asd" style="margin-right: 35px;"><br>
<br><br><br>
<input type="reset" name="clear" value="Clear" style="width: 100px; height: 30px; color: white;
margin-right: 80px; background-color: black; padding: 3px; border-radius: 5px; font-size: 20px;">
<input type="submit" name="submit" value="Login" style="width: 100px; background-color: black; color: white; height: 30px; padding: 3px; font-size: 20px;border-radius: 5px;">
<br><br><br>
If you are not already registerd then click here to <a href="register.html" style="color: blue;">Register Now.</a>
</td>
</tr>
</form>
</table>
</td></tr>
</table>
</body>
</html>