-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistrationform.html
114 lines (114 loc) · 3.42 KB
/
registrationform.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
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap">
</head>
<style>
body{
background-image: url(https://www.youtubestock.com/static/preview0/stock-video-no-copyright-videos-hd-motion-graphics-movies-background-animation-clips-download-101568.jpg);
background-repeat: no-repeat;
background-size: cover;
font-family: 'Poppins', sans-serif;
}
div
{
background-color: white;
padding: 10px 100px 0px 50px ;
margin: 50px 400px 50px 500px ;
box-shadow: 5px 5px 50px gray;
border-radius: 10px;
}
.btn
{
font-weight: bolder;
font-size: 20px;
background-color: purple;
margin: 20px 50px ;
width:250px;
height:50px;
box-shadow: 5px 5px 20px gray;
border-radius: 10px;
}
input[type=text], select {
width: 350px;
height:40px;
margin:0px -5px;
border: 1px solid #ccc;
border-radius: 10px;
box-sizing: border-box;
text-align: left;
}
input[type=email], select {
width: 350px;
height:40px;
margin:0px -5px;
border: 1px solid #ccc;
border-radius: 10px;
box-sizing: border-box;
text-align: left;
}
input[type=number], select {
width: 350px;
height:40px;
margin:0px -5px;
border: 1px solid #ccc;
border-radius: 10px;
box-sizing: border-box;
text-align: left;
}
input[type=date], select {
width: 350px;
height:40px;
margin:0px -5px;
border: 1px solid #ccc;
border-radius: 10px;
box-sizing: border-box;
text-align: left;
}
input[type=password], select {
width: 350px;
height:40px;
margin:0px -5px;
border: 1px solid #ccc;
border-radius: 10px;
box-sizing: border-box;
text-align: left;
}
h1
{
font-size: 30px;
}
p
{
margin: 5px 50px 150px 0px ;
font-stretch: extra-expanded;
}
</style>
<body>
<div>
<h1>REGISTRATION FORM</h1>
<form>
<label for="name">NAME</label><br>
<input id="name" type="text" placeholder="ENTER NAME" required><br></br>
<label for="email">EMAIL ID</label><br>
<input id="email" type="email" placeholder="eg:[email protected]" required><br></br>
<label for="phone">PHONE NUMBER</label><br>
<input id="phone" type="number" placeholder="ENTER NUMBER" required><br></br>
<label for="birth">DATE OF BIRTH</label><br>
<input id="birth" type="date" required><br></br>
<label for="gender">GENDER</label><br>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label><br></br>
<label for="pass" >PASSWORD</label><br>
<input id="pass" type="password" placeholder="PASSWORD" required><br>
<input class="btn" type="button" value="SUBMIT ">
<p>Registered already???<a href="login.html">Login Here!</a></p>
</form>
</div>
</body>
</html>