HTML is easy to learn here we are going to create textbox, buttons, checkbox and radio buttons for beginers. In Freshers Blog we gave many example for html programs. Generally textbox, buttons, checkboxs and radio buttons these components will help you to create interactive registration form.
Example for textboxs, checkboxs bellow,
The above example beginners can learn html more quickly and easily.
Thanks.
Example for textboxs, checkboxs bellow,
<html>
<head>
<title>Welcome to Fresher Blog</title>
</head>
<body>
<input type="text" name="text1" ></input>
<input type="checkbox" name="checkbox1">Checkbox 1</input>
<input type="radio" value="Radio">Radio 1</input>
<input type="submit" value="Freshersblog"></input>
</body>
</html>
<head>
<title>Welcome to Fresher Blog</title>
</head>
<body>
<input type="text" name="text1" ></input>
<input type="checkbox" name="checkbox1">Checkbox 1</input>
<input type="radio" value="Radio">Radio 1</input>
<input type="submit" value="Freshersblog"></input>
</body>
</html>
The above example beginners can learn html more quickly and easily.
Thanks.