Creating hyperlink to link another document in HTML. Use the <a> tag to create a hyperlink. The HTML <a> tag is used for creating a hyperlink either to another document, or somewhere within the current document. Use the Following code to create a hyperlink to link another document in HTML.

Creating HTML Submit Button. Submit button automatically submits a form on click. Using HTML, you can easily take user input. The <input type=”submit”> defines a button for submitting the form data to a form-handler. The form-handler is typically a file on the server with a script for processing input data. The form-handler is specified in the form’s action attribute.

HTML Radio Buttons Creating HTML Code for Radio Button and Checkbox- The <input type=”radio”> defines a radio button. Radio buttons let a user select one of a limited number of choices. To create HTML Radio button use following code. Example of Radio Button HTML Checkboxes The <input type=”checkbox”> defines a checkbox. Checkboxes let a user select ZERO or MORE options

HTML: HTML Code for Radio Button and CheckboxRead More »