forked from AbhishekSharma-86/HTM2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html
63 lines (61 loc) · 1.48 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIGN UP</title>
</head>
<body>
<form>
<div class="form">
<h1>SIGN UP</h1>
<p>Enter Name</p>
<input type="text" required>
<p>Enter Email</p>
<input type="email" required>
<p>Create Password</p>
<input type="password" required>
<p>Confirm Password</p>
<input type="password" required>
<br>
<br>
<br>
<button type="submit">Submit</button>
</div>
</form>
<style>
h1{
margin-left:250px;
}
button{
height:50px;
width:160px;
font-size: x-large;
margin-left:265px;
background-color: rgba(4, 158, 158, 0.651);
color:honeydew;
}
.form{
border:5px solid white;
margin-left:350px;
margin-top:50px;
height:700px;
font-size: x-large;
width:700px;
padding:10px;
background-color: honeydew;
}
input{
height: 30px;
color: rgba(3, 145, 145, 0.945);
font-size: x-large;
border-color: rgba(3, 145, 145, 0.945) ;
}
body{
background-image: url(img.jpeg);
color:rgba(3, 145, 145, 0.945)
}
</style>
</body>
</html>