Sunday, August 22, 2021

html inputs codes


 

<DOCTYPE html>

<html>

<head>

<title> INPUT TYPES</title>

</head>

<body>

<p>hi helo</p>

<form>

NAME:<br>

<input types="text"value="YOUR NAME">

<br>

PASSWORD:<br>

<input type="password" value="password">

<br><br>

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

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

<br>

GENDER:<br>

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

Male<br>

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

Female<br>


<input type="url" id="send"oninput="result.value=send.value">

<br>

<input type="submit">

<br>

<input type="text" id="result">

<br> <br>

<input type="color" id="send"oninput="result.value=send.value">

<input type="text" id="result">



</form>


</body>

</html>

#adityasskk

No comments:

Post a Comment

html inputs codes

  <DOCTYPE html> <html> <head> <title> INPUT TYPES</title> </head> <body> <p>hi helo</p...