nalzok
0
Q:

how to do input in html

<input type="email" name="name" id="id" placeholder="[email protected]" />
5
<input type="radio">Hi</input>
3
<input type="text">
<input type="submit">
<input type="password">
<input type="button">
<input type="hidden">
<input type="number">
0
<!DOCTYPE html>
<html>
   <body>
      <head>
         <title>HTML Forms</title>
      </head>
      <p>Add your details:</p>
      <form>
         Student Name:<br> <input type="text" name="name">
         <br>
         Student Subject:<br> <input type="text" name="subject">
         <br>
         Rank:<br> <input type="text" name="rank">
      </form>
   </body>
</html>
0

New to Communities?

Join the community