-
Notifications
You must be signed in to change notification settings - Fork 0
/
reg.html
66 lines (64 loc) · 2.07 KB
/
reg.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
<html>
<head>
<title>
Registration Form
</title>
<style>
.reg{
max-width:500px ;
max-height: 600px;
border: 1px solid #fff;
margin:0 auto;
background-color: #777;
padding: 50px;
font-size: large;
box-shadow: 0px 8px 16px 0px #eee,10px 16px 0px 4px #1ef ;
}
.reg input{
width: 400px;
height: 40px;
margin: 10px;
border-bottom: 5px solid green;
border-top: none;
border-left: none;
border-right: none;
background-color: #777;
}
#sign{
margin-top: 50px;
}
#sign img{
padding: 1%;
}
.reg a{
text-decoration: none;
color: blanchedalmond;
background-color: brown;
padding: 10px 25px;
}
</style>
</head>
<body bgcolor="black" text="blue">
<div class="reg">
<h2 align="center">
Register Here
</h2>
<label>Name:</label>
<input type="text" placeholder="Enter your name....." >
<label>Email:</label>
<input type="email" placeholder="Enter your email.....">
<label>Password</label>
<input type="password" placeholder="Enter your password.....">
<br><br><a href="reg.html">Register</a>
<center>
<div id="sign">
<img src="facebook.svg" width="5%"/>
<img src="twitter.svg" width="5%"/>
<img src="linkedin.svg" width="5%"/>
<img src="google.svg" width="5%"/>
<img src="youtube.svg" width="5%"/>
</div>
</center>
</div>
</body>
</html>