Posts

HTML5 Cheatsheet

HTML5 Cheatsheet Structure This is the basic template or barebone structure of HTML. Boilerplate <! DOCTYPE html > < html lang = " en " > < head > < meta charset = " UTF-8 " > < title > Document </ title > </ head > < body > <!-- Body --> </ body > </ html > Copy Headings There are six headings available in HTML, H1 is the largest among all, and H6 is the smallest. <h1> Tag < h1 > Heading 1 </ h1 > Copy <h2> Tag < h2 > Heading 2 </ h2 > Copy <h3> Tag < h3 > Heading 3 </ h3 > Copy h4 Tag < h4 > Heading 4 </ h4 > Copy h5 Tag < h5 > Heading 5 </ h5 > Copy h6 Tag < h6 > Heading 6 </ h6 > Container Container tags are the tags that contain some data such as text, image, etc. There are several container tags in HTML. div tag div tag or division tag is used to make blocks or divisions in the docum...