html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1><center>Login</center></h1>
<form>
<label>username:</label>
<input type=text required>
<br>
<label>email:</label>
<input type=email required>
<br>
<label>password</label>
<input type=password required>
<br>
<label>birth date:</label>
<input type=date required>
<br>
<label>gender:</label>
<input type=radio name=gd.>male
<input type=radio name=gd.>female
<hr>
<input type=reset>
<a href=https://www.facebook.com><input type=submit></a>
<hr>
<label>Privacy pollicy</label>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
body {
}
h1{
color: #004AD4;
border:3px solid #004AD4;
border-radius:20px;
}
label{
color: blue;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
alert ("Facebook: you need to login.")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run