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>Form </title>
</head>
<form>
<h1><strong></strong> Form</strong></h1>
<label>Student Name:</label><br>
<input type="text"name="First Name"id="name"placeholder="Enter your First Name">
<br> <br>
<input type="text" name="Last Name" id="name"placeholder="Enter your last Name">
<br><br>
<label>Date of Birth:</label>
<select name="month">
<option value="0"selected disabled></option>Month</option>
</option>
<option value="jan">January</option>
<option value="Feb">February</option>
<option value="March">March</option>
<option value="April"> April</option>
<option value="May">May</option>
<option value="June">June</option>
<option value="July">July</option>
<option value="August">August</option>
<option value="September">September</option>
<option value="October">October</option>
<option value="November">November</option>
<option value="December">December</option>
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
Run