HTML Tables

HTML tables are defined with the <table> tag. A table is divided into rows using the <tr> tag (tr= table row). A row is divided into data cells using the <td> tag (td= table data). A row can also be divided into headings using the <th> tag (th= table heading). …

HTML Lists

HTML Unordered List List item 1 List item 2 List item 3 An unordered HTML list starts with the <ul> tag, and each list item starts with the <li> tag and ends with the </li> tag. An unordered list are marked with bullets. <ul><li>List item 1</li><li>List item 2</li><li>List item 3</li></ul> …

HTML Links

The HTML tag <a> defines a hyperlink. A hyperlink (or simply ‘link’) is a word, a group of words, or an image that you can click on to jump to another page. You’ll know something is a link when you move the cursor over a link in a web page …

HTML Headings & Paragraphs

HTML Headings HTML headings are defined with the <h1> to <h6> tags. <h1> indicating the most important and <h6> indicating the least important. <h1>This is the most important heading</h1> <h2>This is the second most important heading</h2> <h3>This is the third most important heading</h3> Headings are important for your web page, …

HTML Forms

An HTML form passes data through a server, either creating a database or sending the form to your email. An HTML form can contain many different elements like text fields, radio-buttons, checkboxes, password field, and more. The form can also allow to select from a list, have a textarea, legend, …