1Basic Html Template:
2<html>
3 <head>
4 <title>
5 /* document title here */
6 </title>
7 /* document meta information and external file include written here */
8 </head>
9 <body>
10 /* document body goes here */
11 </body>
12</html>
1<form action="" method="post">
2 <!-- a hidden input -->
3 <input type="hidden" name="a_hidden_input"/>
4
5 <!-- a text input -->
6 <input type="text" name="a_text_input"/>
7
8 <!-- submit button -->
9 <input type="submit" value="Submit"/>
10</form>