0% found this document useful (0 votes)
63 views

Liveweave Program of HTML, CSS and Javascript

The document contains an HTML form with various input fields including text, password, email, radio buttons for gender, checkboxes for vehicles owned, and a dropdown menu to select a color. The form allows users to enter personal information and submit or reset the form.

Uploaded by

shwetayadav9323
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
63 views

Liveweave Program of HTML, CSS and Javascript

The document contains an HTML form with various input fields including text, password, email, radio buttons for gender, checkboxes for vehicles owned, and a dropdown menu to select a color. The form allows users to enter personal information and submit or reset the form.

Uploaded by

shwetayadav9323
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>
<title> html ,css and javascript </title>
</head>
<body>
<form>
Name <input type="text" id="fname" maxlength="19"><br><br>
password <input type="password" id="fname" maxlength="19"> <br> <br>
e-mail <input type ="email" id="email"> <br><br>

<input type="radio" id="html" name="fav_language" value="male">


<label for="html"> male</label> <br> <br>
<input type="radio" id="css" name="fav_language" value="female">
<label for="html"> female</label> <br> <br>

<input type="checkbox" id="vehicle1" name="vehicle1" value="bike">


<label for="vehicle"> i have a vehicle </label> <br>
<input type="checkbox" id="vehicle2" name="vehicle2" value="train">
<label for="vehicle"> i have a train </label> <br>
<input type="checkbox" id="vehicle3" name="vehicle3" value="car">
<label for="vehicle"> i have a car </label> <br>
<input type="checkbox" id="vehicle4" name="vehicle4" value="taxi">
<label for="vehicle"> i have a zupido</label> <br> <br> <br>

<label for="cars">choose a color:</label>

<select id="color">
<option value="green"> green</option>
<option value ="blue">blue </option>
<option value="red"> red </option>
<option value ="yellow"> yellow </option>

</select>
<br><br>
<button type ="submit" value="submit"> confirm </button><br><br>
<button type ="reset" value="reset"> reset </button>

<br><br>

You might also like