My Coding Cheat Sheet

HTML Cheat Sheet

HTML Structure

‹body›

‹main›

‹section›

‹article› ‹/article›

‹/section›

‹/main›

‹aside› ‹/aside›

‹/body›

HTML Table Structure

‹table›

‹caption› ‹/caption›

‹thead›

‹tr›

‹th› ‹/th›

‹/tr›

‹/thead›

‹tbody›

‹tr›

‹td› ‹/td›

‹/tr›

‹tbody›

‹tfoot›

‹tr›

‹td› ‹/td›

‹/tr›

‹tfoot›

‹/table›

The input a HTML element is used to create interactive controls for web-based forms in order to accept data from the user
html code description example
‹ input type="button" value="click me" › a push button with no default behavior displaying the value of the value attribute, empty by default.
‹ input type="checkbox" › a check box allowing single values to be selected/deselected
‹ input type="color" › a control that opens a color picker when active
‹ input type="date" › a control for entering a date (year, month, and day, with no time).