-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtask35.html
122 lines (122 loc) · 2.13 KB
/
task35.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
<html>
<head>
<style>
body{
background:url("images/8.jpg");
background-repeat:no-repeat;
background-size:cover;
}
#box{
min-height:600px;
width:850px;
background:white;
margin:50px auto;
border-radius:35px;
}
.left{
background:white;
height:600px;
width:425px;
border-radius:35px 0px 0px 35px;
float:left;
}
.right{
background:purple;
height:600px;
width:425px;
float:left;
border-radius:35px;
}
.fm{
padding-left:110px;
padding-top:50px;
}
p{
text-align:center;
font-size:28px;
font-weight:bold;
padding-top:25px;
text-shadow:3px 3px 3px orange,5px -4px 3px gold;
letter-spacing:2px;
font-family:Felix Titling;
}
.txt{
height:45px;
width:240px;
margin-bottom:20px;
border-radius:40px;
border:none;
box-shadow:0px 0px 8px 3px black;
}
.btn{
height:45px;
width:240px;
border-radius:40px;
border:none;
background:purple;
color:white;
font-size:20px;
font-weight:bold;
transition:all 3s;
}
h2{
text-align:center;
font-size:38px;
background:aqua;
font-family:Felix Titling;
}
h3{
font-size:27px;
text-align:center;
background:gold;
width:50%;
font-family:Felix Titling;
margin:50px auto;
}
ul li{
color:white;
font-size:25px;
font-family:Arial Narrow;
text-align:center;
line-height:39px;
}
pre{
color:white;
line-height:310px;
margin-left:10px;
}
.btn:hover{
background:linear-gradient(aqua,purple);
height:45px;
transition:all 2s;
}
</style>
</head>
<body>
<div id="box">
<div class="left">
<p>Create Your Account</p>
<form class="fm">
<input type="text" placeholder="Username" class="txt"/><br/>
<input type="email" placeholder="email" class="txt" /><br/>
<input type="Password" placeholder="Password" class="txt" /><br/>
<input type="checkbox" name="rm"/>Remember me ? <br/>
<br/>
<input type="submit" value="Create Account" class="btn"/>
</form>
</div>
<div class="right">
<h2>WELCOME !</h2>
<h3>OUR SERVICES</h3>
<ul>
<li>Faster Delivery</li>
<li>Secure Payments</li>
<li>Fast-Customer Services</li>
<li>Economical Rates</li>
<li>Rewards Points</li>
</ul>
<pre>© 2023 Pvt.Ltd. Need-help:Call-at:1800-0101</pre>
</div>
</div>
</body>
</html>