-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-project.html
127 lines (119 loc) · 3.01 KB
/
form-project.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
<!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>input project practise</title>
</head>
<style>
form{
background-color:rgb(252, 247, 247) ;
text-align: center;
width: 700px;
margin-left:auto;
margin-right: auto;
border: 2px solid rgb(252, 247, 247);
}
#form-heading{
Font Size: 32px;
Padding-Top: 56px;
Padding-Bottom: 32px;
}
#social-wrapper{
background-color:rgb(94, 91, 91);
padding: 24px;
}
.social-icon{
Width: 50px;
Height: 50px;
Padding-Top : 16px;
Padding-Bottom : 16px;
Padding-Left: 32px;
Padding-Right:32px;
}
.input-box{
background-color:rgb(252, 247, 247) ;
font-size: 18px;
padding-bottom: 12px;
margin-bottom: 36px;
border: 0;
border-bottom: 1px solid #ccc;
width:100%;
}
.input{
Padding-Top: 80px;
Padding-Bottom: 40px;
Padding-Left: 80px;
Padding-Right:80px;
}
#btn-submit{
Background-Color: #0a0a0a;
Padding-Top: 12px;
Padding-Bottom:12px;
Padding-Left: 24px;
Padding-Right:24px;
Font-Size: 18px;
Color: white;
Border:none;
}
</style>
<body>
<form>
<h1 id="form-heading">Register</h1>
<div id="social-wrapper">
<img
class="social-icon"
src="http://pluspng.com/img-png/google-logo-png-open-2000.png"
alt="Google logo"
/>
<img
class="social-icon"
src="https://cdn4.iconfinder.com/data/icons/social-media-icons-the-circle-set/48/facebook_circle-512.png"
alt="Facebook logo"
/>
<img
class="social-icon"
src="https://www.logo.wine/a/logo/GitHub/GitHub-Icon-White-Dark-Background-Logo.wine.svg"
alt="Github logo"
/>
<img
class="social-icon"
src="https://cdn4.iconfinder.com/data/icons/social-media-icons-the-circle-set/48/linkedin_circle-512.png"
alt="linkedin logo"
/>
</div>
<div class="input">
<input
class="input-box"
type="text"
name="username"
placeholder="Username"
required
/>
<input
class="input-box"
type="text"
name="email"
placeholder="Email"
required
/>
<input
class="input-box"
type="password"
name="password"
placeholder="Password"
required
/>
<input
class="input-box"
type="password"
name=" confirm-password"
placeholder="Confirm Password"
required
/>
</div>
<input id="btn-submit" type="submit" value="Register" />
</form>
</body>
</html>