Techoceanhub logo

Day March 24, 2021

How to create a Table in the HTML

Html Table allow web developer to create tabular data format having multiple rows and column. Tables Tag Description <table>  a table tag <caption>  a table caption <th> a header cell in a table <tr> a row in a table <td>…

Introduction to HTML

HTML stands for Hyper Text Markup Language used by the browser to manipulate images, contents, texts and other content, in order to display it in the required format. Also, it describes the structure of a Web Page. :: Below are…

Html forms and input type

The <form> Element The HTML <form> element is used to create an HTML form for user input: <form> <input type=”text” name=”txtFname”/></form> The <form> element is a container for different types of input elements, such as: text fields, checkboxes, radio buttons, dropdown, submit buttons, etc.…