Core HTML

Form - Simple

This simple form example demonstrates how to code a very simplistic form with a single text input in it.

SimpleForm.html

<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML: Simple Form Example</title>
  </head>
  <body>
    <form>
      Name:<br />
      <input type="text" name="username" value="William Cullen Bryant" />
    </form>
  </body>
</html>
 

Output

 
 

© 2007–2024 XoaX.net LLC. All rights reserved.