This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
notes:html_cheat_sheet [2026/07/16 16:57] 114.119.135.37 old revision restored (2008/08/14 04:44) |
notes:html_cheat_sheet [2026/07/24 16:43] (current) 84.255.184.65 old revision restored (2026/07/06 11:37) |
||
|---|---|---|---|
| Line 125: | Line 125: | ||
| * 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 § | ||
| - | ==== The HEAD Element | + | ==== Advanced HTML ==== |
| - | * The head element of a page is not displayed. It contains information about the document. | + | |
| - | * It may only contain the following tags: base (base url for links), link (external resources e.g.style-sheets), | + | |
| * Example style declaration in head <code html> | * Example style declaration in head <code html> | ||
| < | < | ||
| Line 135: | Line 133: | ||
| </ | </ | ||
| </ | </ | ||
| + | * <div> and < | ||
| + | * The head element of a page is not displayed. It may only contain the following tags: base (base url for links), link (external resources e.g.style-sheets), | ||
| * Examples of the meta tag <code html> | * Examples of the meta tag <code html> | ||
| <meta name=" | <meta name=" | ||
| Line 141: | Line 141: | ||
| <meta http-equiv=" | <meta http-equiv=" | ||
| </ | </ | ||
| - | |||
| - | ==== Advanced HTML ==== | ||
| - | |||
| - | * <div> and < | ||
| * A simple script in a webpage <code html> | * A simple script in a webpage <code html> | ||
| < | < | ||
| Line 155: | Line 151: | ||
| </ | </ | ||
| * An object element with child param elements can also be used to embed content. | * An object element with child param elements can also be used to embed content. | ||
| - | * accesskey (character) and tabindex (integer) attributes can be used to make a page keyboard-friendly. | ||