Computer Science, asked by nickspatil0712, 21 days ago

2. Create web page with heading "Select your Date of Birth" Display three drop down lists. First
should be used to select Day, second should be used to select month and third should be used to
select year. Display indication as Day, Month and Year in front of each list. Give 3 options under
each list. Place button GO to submit details to the server​

Answers

Answered by ak1527468
1

Answer:

personality confidence

Answered by rrrrajakumarivishwak
0

Explanation:

<! doctype html>

<html>

<head>

<title>select your date of birth</title>

</head>

<body>

<h1>select your date of birth</h1>

<form name="f1" method="post">

select day: <input type="select" value="day">

<option>1</option>

<option>6</option>

<option>12</option>

</select><br><br>

select month: <input type="select" value="month">

<option>January</option>

<option>October</option>

<option>December</option>

</select><br><br>

select year: <input type="select" value="year">

<option>1980</option>

<option>2006</option>

<option>1984</option>

</select><br><br>

<input type="submit" value="GO">

<input type="reset" value="clear">

</form>

</html>

Similar questions