Site Tools


notes:html_cheat_sheet

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
notes:html_cheat_sheet [2026/06/05 12:36]
47.237.255.82 old revision restored (2026/05/28 19:04)
notes:html_cheat_sheet [2026/06/07 15:58] (current)
213.194.156.245 old revision restored (2026/05/29 22:46)
Line 31: Line 31:
 ==== HTML Components ==== ==== HTML Components ====
   * HTML documents are text files consisting of HTML elements.   * HTML documents are text files consisting of HTML elements.
-  * HTML elements are defined using HTML tags. [[http://www.w3schools.com/tags/ref_byfunc.asp | HTML Tag Reference]].+  * HTML elements are defined using HTML tags.
   * HTML tags contain the element name surrounded by angle brackets (** < > **).   * HTML tags contain the element name surrounded by angle brackets (** < > **).
   * HTML tags normally come in pairs - the **start tag**(<p>) and the **end tag** (</p>).   * HTML tags normally come in pairs - the **start tag**(<p>) and the **end tag** (</p>).
Line 38: Line 38:
   * Attribute values should always be either single or double-quoted.   * Attribute values should always be either single or double-quoted.
   * Element and attribute names are not sensitive but lowercase names are recommended and required in XHTML.   * Element and attribute names are not sensitive but lowercase names are recommended and required in XHTML.
-  * [[http://www.w3schools.com/tags/ref_standardattributes.asp | Standard attributes]] valid for most elements include: class, id, title, style, lang.+  * Standard attributes valid for most elements include: class, id, title, style, lang.
  
 ==== Formatting Tags ==== ==== Formatting Tags ====
Line 120: Line 120:
  
 ==== Character Entities ==== ==== Character Entities ====
-  * A character entity represents a single character. [[http://www.w3schools.com/tags/ref_entities.asp | Character entities]] [[http://www.w3schools.com/tags/ref_symbols.asp | Symbol Entities]].+  * A character entity represents a single character. [[http://www.w3schools.com/tags/ref_entities.asp | All named entities]].
   * It consists of an ampersand (&), an entity name or a # and an entity number, and finally a semicolon (;) (e.g. &#60;).   * It consists of an ampersand (&), an entity name or a # and an entity number, and finally a semicolon (;) (e.g. &#60;).
   * Common character entities include: &gt; , &lt; , &nbsp; (space), &quot; , &apos; .   * Common character entities include: &gt; , &lt; , &nbsp; (space), &quot; , &apos; .
   * Other common symbols include: cent ¢, pound £, yen ¥, euro €, copy ©, times ×, div ÷, reg ®, sect §   * Other common symbols include: cent ¢, pound £, yen ¥, euro €, copy ©, times ×, div ÷, reg ®, sect §
-  * Non-standard letters and other characters can be displayed url-encoded using [[http://www.w3schools.com/html/html_urlencode.asp | hexadecimal format]] e.g. %20. 
  
 ==== HTML Head ==== ==== HTML Head ====
notes/html_cheat_sheet.1780688195.txt.gz · Last modified: 2026/06/05 12:36 by 47.237.255.82