html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Profile Page</title>
</head>
<body style="background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTEIRF8JZQOZ-aR5Iwi3dXkvYaD2J2lvgJl86Nj_mEDOvIji2gx_18eEsAa&s=10');">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT2Sn4XJO7fqcfJhCT0OC3XEO5o6lebM3I0c4hBmAcbp51_Rb5Wh_0bDvo&s=10" alt="pic" width="250px">
<h1 style="font-size: 20px; text-align: center;">CREATE PROFILE</h1>
<br>
<p style="color: yellow;">Complete the following steps to create a profile.</p>
<form action="submit-form.php" method="post">
<input type="text" name="first_name"> First Name<br>
<input type="text" name="last_name"> Last Name<br>
<input type="password" name="password"> Password<br>
<input type="radio" name="sex" value="male"> Male<br>
<input type="radio" name="sex" value="female"> Female<br>
<p align="center"><input type="date" name="date_of_birth"> Date of Birth</p><br>
<input type="email" name="email" placeholder="your_email@gmail.com"> Email<br><br>
<p align="center"><button onclick="alert('Please wait while your account is being created.');">Submit</button></p>
</form>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Laufen