-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (75 loc) · 2.39 KB
/
index.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
<html>
<head>
<title>Registration Page</title>
<style>
body{
background-color: antiquewhite;
align-items: center;
justify-content: center;
margin: 0;
display: flex;
font-family: 'Courier New', Courier, monospace;
height: 100vh;
}
.container{
background-color: rgb(220, 245, 238);
padding: 20px;
border-radius: 8px;
width: 400px;
box-shadow: 0 0 10px, black;
}
h2{
text-align: center;
border-radius: 10px;
}
.form-group{
margin-bottom: 20px;
}
.label{
display: block;
margin-bottom: 5px;
}
button{
position: relative;
left: 140px;
width: 25%;
padding: 10px;
background-color: rgba(168, 14, 109, 0.779);
font-weight: bold;
color: aliceblue;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover{
background-color: blueviolet;
}
</style>
</head>
<body>
<div class="container">
<h2>Registration Page!</h2>
<div class="form-group">
<label for="name"><b>Name :</b></label>
<input type="text" placeholder="Enter Your Name" name="Name" id="name" required>
</div>
<br>
<div class="form-group">
<label for="name"><b>Email :</b></label>
<input type="text" placeholder="Enter Your Email" name="Email" id="email" required>
</div>
<br>
<div class="form-group">
<label for="pw"><b>Password :</b></label>
<input type="password" placeholder="Enter password" name="pw" id="pw" required>
<br>
</div>
<div class="form-group">
<label for="phn"><b>Contact No. :</b></label>
<input type="tel" placeholder="Phone no" name="phn" id="phn" required>
<br>
</div>
<button type="submit" class="submit">Submit</button>
</div>
</body>
</html>