--- layout: web title: A Quick Guide to Modern HTML --- # A Quick Guide to Modern HTML This guide is a work in progress! Modern HTML is a remarkably simple and coherent standard. ## Basic HTML HTML is a *markup language* used for content on the web. It is composed of *tags*, that may be *nested* within each other to form a *document tree*. It is *semantic*: every tag and many tags indeed hold no purpose other than indicating ... Every website you visit is composed of HTML, which alongside with styling via CSS... Modern websites are composed of somewhat atrocious amounts of Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for its appearance. HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as interactive forms may be embedded into the rendered page. HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes, and other items. HTML elements are delineated by tags, written using angle brackets. Tags such as `` and `` directly introduce content into the page. Other tags such as `

` and `

` surround and provide information about document text and may include sub-element tags. Browsers do not display the HTML tags but use them to interpret the content of the page. HTML is composed of *tags*. These tags are enclosed in angle brackets There are quite a few tags, but not overwhelmingly many. Here they all are. if your tag is not reserved, you can kinda just write whatever?? i like doing this There are about XX important tags. Here they all are. ## Style - [``](https://developer.mozilla.org/HTML/Element/b) or [``](https://developer.mozilla.org/HTML/Element/strong): bold text - [``](https://developer.mozilla.org/HTML/Element/i) or [``](https://developer.mozilla.org/HTML/Element/em): italic text - [``](https://developer.mozilla.org/HTML/Element/s): struckthrough text - [``](https://developer.mozilla.org/HTML/Element/u): underlined text - [``](https://developer.mozilla.org/HTML/Element/q): quoted text - [``](https://developer.mozilla.org/HTML/Element/small): small text - [``](https://developer.mozilla.org/HTML/Element/sub): subtext - [``](https://developer.mozilla.org/HTML/Element/sup): supertext - [``](https://developer.mozilla.org/HTML/Element/code): text styled like code Some emphasis must be put: these tags are **semantic**. They are not for styling! You have a much more expressive form of styling with CSS! Given the existence of a quote key on most ASCII keyboards, this is not very useful, unless you're a stickler for Unicode quotes. ## Wrappers These wrappers have no style associated with them, but are *semantically meaningful*. or is that true? they are all `block`, no? `` `` `
` - [`

,

,

,

,

,
`](https://developer.mozilla.org/HTML/Element/h1) - [`

`](https://developer.mozilla.org/HTML/Element/p) - [`

`](https://developer.mozilla.org/HTML/Element/pre)
- [`
`](https://developer.mozilla.org/HTML/Element/br) - [`
`](https://developer.mozilla.org/HTML/Element/hr) - [``](https://developer.mozilla.org/HTML/Element/span) ## Content ```css ``` `` `