From 3c334febd6f680449c9fccb4d421b6c0a0704084 Mon Sep 17 00:00:00 2001
From: JJ
Date: Fri, 5 Jan 2024 01:04:33 -0800
Subject: meow
---
web/html.md | 96 ++++++++++++++++++++++++++++---------------------------------
1 file changed, 44 insertions(+), 52 deletions(-)
(limited to 'web')
diff --git a/web/html.md b/web/html.md
index 6dcdef6..6e52fb2 100644
--- a/web/html.md
+++ b/web/html.md
@@ -54,20 +54,12 @@ These wrappers have no style associated with them, but are *semantically meaning
`
`
`
`
-```css
-
-
-
-
-
-
-```
-
-`
`
-` `
-` `
-` `
-` ` (or below)
+- [`, , , , , `](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
@@ -110,13 +102,13 @@ These wrappers have no style associated with them, but are *semantically meaning
Aside from being block elements, they have no styling...
-` `
-``
-``
-` `
-``
-``
-` `
+- [``](https://developer.mozilla.org/HTML/Element/main):
+- [``](https://developer.mozilla.org/HTML/Element/header):
+- [``](https://developer.mozilla.org/HTML/Element/footer):
+- [``](https://developer.mozilla.org/HTML/Element/nav):
+- [``](https://developer.mozilla.org/HTML/Element/section):
+- [``](https://developer.mozilla.org/HTML/Element/aside):
+- [``](https://developer.mozilla.org/HTML/Element/article):
## Metadata
@@ -144,25 +136,25 @@ Okay. That's everything important. 75 tags or so? I dunno. Manageable!
## Tables
-- [``](https://developer.mozilla.org/HTML/Element/table):
+- [``](https://developer.mozilla.org/HTML/Element/table):
A table. Structured data.
-- [` `](https://developer.mozilla.org/HTML/Element/thead):
+- [``](https://developer.mozilla.org/HTML/Element/thead):
A row of cells acting as a header.
-- [` `](https://developer.mozilla.org/HTML/Element/tbody):
+- [``](https://developer.mozilla.org/HTML/Element/tbody):
The cells that compose the body of the table.
-- [` `](https://developer.mozilla.org/HTML/Element/tfoot):
+- [``](https://developer.mozilla.org/HTML/Element/tfoot):
A row of cells acting as a footer.
-- [` `](https://developer.mozilla.org/HTML/Element/tr):
+- [``](https://developer.mozilla.org/HTML/Element/tr):
A row of cells.
-- [` `](https://developer.mozilla.org/HTML/Element/td):
+- [``](https://developer.mozilla.org/HTML/Element/td):
Data cells. `colspan` and `rowspan` indicate their size in the table. `headers` indicates the ids of the corresponding header cells.
-- [` `](https://developer.mozilla.org/HTML/Element/th):
+- [``](https://developer.mozilla.org/HTML/Element/th):
Header cells. `colspan` and `rowspan` indicate their size in the table. `headers` indicates the ids of the corresponding header cells. `scope` may be one-of `row`, `col`, `rowgroup`, `colgroup`, and indicates the set of cells the header corresponds to.
-- [` `](https://developer.mozilla.org/HTML/Element/col):
+- [` `](https://developer.mozilla.org/HTML/Element/col):
A column within a table. Columns span over atop rows.
-- [` `](https://developer.mozilla.org/HTML/Element/colgroup):
+- [``](https://developer.mozilla.org/HTML/Element/colgroup):
A group of columns within a table.
-- [` `]((https://developer.mozilla.org/HTML/Element/caption):
+- [``](https://developer.mozilla.org/HTML/Element/caption):
The title of a table.
The sheer quantity of tags for tables is quite intimidating.
@@ -176,42 +168,42 @@ You can pretty much just ignore them.
``, ``
``
-- [` `](https://developer.mozilla.org/HTML/Element/dl):
+- [``](https://developer.mozilla.org/HTML/Element/dl):
A *description list*. Consists of terms (``) and descriptions (` `). Ugly as sin, and scarcely used.
-- [` `](https://developer.mozilla.org/HTML/Element/dt):
+- [``](https://developer.mozilla.org/HTML/Element/dt):
Specifies a *term* entry in a description list.
-- [` `](https://developer.mozilla.org/HTML/Element/dd):
+- [``](https://developer.mozilla.org/HTML/Element/dd):
Specifies a *description* entry in a description list.
-- [` `](https://developer.mozilla.org/HTML/Element/address):
+- [``](https://developer.mozilla.org/HTML/Element/address):
An element indicating its contents are contact information.
-- [` `](https://developer.mozilla.org/HTML/Element/blockquote):
+- [``](https://developer.mozilla.org/HTML/Element/blockquote):
An element indicating its contents are an extended quotation.
-- [` `](https://developer.mozilla.org/HTML/Element/data):
+- [``](https://developer.mozilla.org/HTML/Element/data):
An element indicating its content has corresponding data, in the `value` attribute.
-- [` `](https://developer.mozilla.org/HTML/Element/search):
+- [``](https://developer.mozilla.org/HTML/Element/search):
An element indicating its contents are related to searching.
-- [` `](https://developer.mozilla.org/HTML/Element/time):
+- [``](https://developer.mozilla.org/HTML/Element/time):
An element indicating a specific time. `datetime` must be set to a machine-readable format.
-- [` `](https://developer.mozilla.org/HTML/Element/wbr):
+- [``](https://developer.mozilla.org/HTML/Element/wbr):
An element that represents a word break *opportunity*. Browsers will prefer breaking there when possible.
## Deprecation Fodder
These elements are *really* useless. You shouldn't bother knowing them. They're in the spec, but scarcely used.
-- [` `](https://developer.mozilla.org/HTML/Element/abbr): An element for displaying abbreviations.
-- [` `](https://developer.mozilla.org/HTML/Element/cite): An element indicating its contents are a citation.
-- [` `](https://developer.mozilla.org/HTML/Element/del): An element for displaying deleted text.
-- [` `](https://developer.mozilla.org/HTML/Element/dfn): An element indicating its contents are a definition.
-- [` `](https://developer.mozilla.org/HTML/Element/ins): An element for displaying inserted text.
-- [` `](https://developer.mozilla.org/HTML/Element/kbd): An element for displaying keyboard shortcuts.
-- [` `](https://developer.mozilla.org/HTML/Element/mark): An element for displaying highlighted text.
-- [` `](https://developer.mozilla.org/HTML/Element/samp): An element for displaying sample output.
-- [` `](https://developer.mozilla.org/HTML/Element/var): An element for displaying mathematical variables.
+- [``](https://developer.mozilla.org/HTML/Element/abbr): An element for displaying abbreviations.
+- [``](https://developer.mozilla.org/HTML/Element/cite): An element indicating its contents are a citation.
+- [``](https://developer.mozilla.org/HTML/Element/del): An element for displaying deleted text.
+- [``](https://developer.mozilla.org/HTML/Element/dfn): An element indicating its contents are a definition.
+- [``](https://developer.mozilla.org/HTML/Element/ins): An element for displaying inserted text.
+- [``](https://developer.mozilla.org/HTML/Element/kbd): An element for displaying keyboard shortcuts.
+- [``](https://developer.mozilla.org/HTML/Element/mark): An element for displaying highlighted text.
+- [``](https://developer.mozilla.org/HTML/Element/samp): An element for displaying sample output.
+- [``](https://developer.mozilla.org/HTML/Element/var): An element for displaying mathematical variables.
- [` `](https://developer.mozilla.org/HTML/Element/embed):
An element for generic embedded content. `` is generally slightly preferred, but ` `, ``, ``, and the like are preferred over both of them.
-- [` `](https://developer.mozilla.org/HTML/Element/object):
+- [``](https://developer.mozilla.org/HTML/Element/object):
An element for displaying generic embedded content. Generally slightly preferred over ``, but ` `, ``, ``, and the like are preferred over both of them.
-- [` `](https://developer.mozilla.org/HTML/Element/menu): Officially identical to `` in syntax and semantics. Doesn't have much of a reason to exist.
-- [` `](https://developer.mozilla.org/HTML/Element/progress):
+- [` `](https://developer.mozilla.org/HTML/Element/menu): Officially identical to ` ` in syntax and semantics. Doesn't have much of a reason to exist.
+- [``](https://developer.mozilla.org/HTML/Element/progress):
A worse version of ``. Like, this is *exactly* ``, but without the `min`, `low`, `high`, and `optimum` attributes. Why??
--
cgit v1.2.3-70-g09d2