Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html>
<head> <title> Lab Task 13 Ayesha Zainab</title> </head>
<body>
<form action="page2.html">

<fieldset>

<legend> Personal information: </legend>

<label for="name">Name: </label>


<input type="text" id="name" name="name"> </br></br>

<label for="password">Password: </label>


<input type="password" id="password" name="password"> </br></br>

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


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

<label for="text">Enter Text: </label> </br>


<textarea name="text" rows="06" cols="40">
</textarea></br></br>
<label for="dropdown"> </label>
<select id="dropdown" name="dropdown">
<option value="one">Select One</option>
<option value="two">Select Two</option>
<option value="three">Select Three</option>
</select></br></br>

<label for="myfile">Select image:</label>


<input type="file" id=img" name="img">

<input type="submit" value="Submit"></submit>

</fieldset>
<p>The below button displays as the reset button which is used to reset the
filled values of a form to its initial values.</p>
<input type="reset" value="Reset">
</form>

</body>
</html>

You might also like