0% found this document useful (0 votes)
7 views2 pages

HTML Task

Uploaded by

ghare7399
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

HTML Task

Uploaded by

ghare7399
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Personal Details Form</title>

</head>

<body>

<form>

<fieldset>

<legend>personal details</legend>

<label for="first-name">First name:</label>

<input type="text" id="first-name" name="first-name"><br><br>

<label for="last-name">Last name:</label>

<input type="text" id="last-name" name="last-name"><br><br>

<label>Gender:</label>

<input type="radio" id="male" name="gender" value="male">

<label for="male">Male</label>

<input type="radio" id="female" name="gender" value="female">

<label for="female">Female</label><br><br>

<label for="email">Email:</label>

<input type="email" id="email" name="email"><br><br>

<label for="dob">Date of Birth:</label>

<input type="date" id="dob" name="dob"><br><br>


<label for="address">Address:</label><br>

<textarea id="address" name="address" rows="4" cols="50"></textarea><br><br>

<button type="submit">Submit</button>

</fieldset>

</form>

</body>

</html>

You might also like