Input
Output
<!DOCTYPE html> <html> <head> <title>Welcome to onlinetpoint</title> </head> <body> <form action="/submit" method="post"> <input type="text" name="fullname" placeholder="Full Name"><br> <input type="password" name="password" placeholder="Password"><br> <input type="email" name="email" placeholder="Email"><br> <input type="number" name="age" min="18" max="60"><br> <input type="date" name="dob"><br> <input type="file" name="resume"><br> <input type="color" name="favcolor"><br> <input type="range" name="volume" min="0" max="100"><br> <input type="tel" name="phone"><br> <input type="url" name="website"><br> <input type="search" name="search"><br> <input type="radio" name="gender" value="male"> Male <input type="radio" name="gender" value="female"> Female<br> <input type="checkbox" name="subscribe" value="yes"> Subscribe<br> <input type="submit" value="Submit"> <input type="reset" value="Reset"> </form> </body> </html>