Computer Science, asked by vermapreetshama, 3 months ago

html coding for this pic ​

Attachments:

Answers

Answered by dastageerSayed
2

Answer:

Explanation:

<html>

 <label for="fname">First name:</label>

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

 <label for="lname">Last name:</label>

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

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

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

 <label for="sex">Sex:</label>

 <input type="radio" id="male"  value="Male">

 <label for="html">Male</label><br>

 <input type="radio" id="frmale"  value="Female">

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

 <label for="hobbies">Hobbies:</label>

 <input type="checkbox" id="painting" name="painting" value="Painting">

 <label for="painting"> Painting</label><br>

 <input type="checkbox" id="reading" name="reading" value="Reading">

 <label for="reading">Reading</label><br>

 <input type="checkbox" id="music" name="music" value="Music">

 <label for="music"> Music</label><br>

 <input type="checkbox" id="sketching" name="skecting" value="Sketching">

 <label for="sketching"> Sketching</label><br>

 <label for="comment">Comment:</label>

 <textarea id="comments" name="comment" rows="4" cols="50">   </textarea>

</form>

</html>

Similar questions