-
Notifications
You must be signed in to change notification settings - Fork 3
/
Signup.html
183 lines (165 loc) · 4.08 KB
/
Signup.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>TAKSHILA</title>
<style media="screen">
body {
/* color: */
margin: 0;
padding: 0;
font-family: sans-serif;
background: url(Images/bulb.jpg) no-repeat;
background-size: cover;
}
.name {
color: white;
font-size: 60px;
font-family: cursive;
font-style: italic;
font-weight: bold;
padding-top: 10px;
text-align: center;
}
h1 {
color: white;
text-transform: uppercase;
font-weight: 500;
}
h4 {
color: white;
text-transform: uppercase;
font-weight: 200;
}
.box {
width: 300px;
padding: 40px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.box input[name="box"],
.box input[name="dob"] {
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #3498db;
padding: 14px 10px;
width: 200px;
outline: none;
color: white;
border-radius: 25px;
transition: 0.5s;
}
.box input[name="box"]:focus,
.box input[name="dob"]:focus {
width: 250px;
border: 2px solid #11f632;
}
h4:hover {
color: red;
}
.box input[type="submit"] {
border: 0px;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #11f632;
;
padding: 14px 40px;
outline: none;
color: white;
border-radius: 25px;
transition: 0.5s;
}
.box input[type="submit"]:hover {
background: #11f632;
}
.sidemenu {
position: absolute;
top: 50%;
transform: translateY(-220px);
}
.sidemenu a {
background-color: #1aa6e4;
font-size: 22px;
display: block;
color: white;
width: 130px;
padding: 9px;
text-decoration: none;
margin: 8px 0;
border-radius: 10px;
margin-left: -100px;
}
.sidemenu a:hover {
margin-left: 0;
}
</style>
</head>
<body>
<div class="sidemenu">
<a href="index.html">Home</a>
<a href="login.html">Login</a>
<a href="explore.html">Explore</a>
</div>
<form class="box" action="" method="post">
<p class="name">TAKSHILA</p>
<h1>Signup</h1>
<input type="name" name="box" value="" placeholder="NAME">
<input type="email" name="box" value placeholder="E-mail">
<h4>Date of birth</h4>
<input type="date" name="dob" value="">
<input type="tel" placeholder="Number" name="box" value="">
<input type="submit" name="" value="Signup">
</form>
<!-------------footer------------->
<section class="footer">
<div class="container text-center">
<div class="row">
<div class="col-md-3">
<h1>Useful Links</h1>
<p>Privacy Policy</p>
<p>terms of Use</p>
<p>Return Policy</p>
<p>Coupons</p>
</div>
<div class="col-md-3">
<h1>Contact Us</h1>
<p>Toll Free: 1-866-229-2557</p>
<p>Email: sales@reliablesoft.net</p>
<p>Online Contact form</p>
<p>Sitemap</p>
</div>
<div class="col-md-3">
<h1>Company</h1>
<p><a href="Contact Us.html">Contact Us</a> </p>
<p><a href="about us.html">About us</a> </p>
<p><a href="">Career</a> </p>
<p><a href="">Affiliate</a> </p>
</div>
<div class="col-md-3">
<h1>Follow Us </h1>
<p><a href="https://www.facebook.com"target="new"><i class="fa fa-facebook-official"></i>Facebook</a></p>
<p><a href="https://www.instagram.com"target="new"><i class="fa fa-instagram"></i>Instagram</a></p>
<p> <a href="https://www.twitter.com"target="new"><i class="fa fa-twitter"></i>Twitter</a></p>
<p><a href="https://www.youtube.com"target="new"><i class="fa fa-youtube-play"></i>Youtube</a></p>
</div>
<div class="col-md-3">
<h1>Download App </h1>
<img src="img/AP.jpg" >
</div>
</div>
<p class="Cpoyright">All rights are Reserved By @LPU</p>
</div>
</section>
</div>
</div>
</footer>
</body>
</html>