This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
notes:html_cheat_sheet [2026/07/31 13:27] 190.212.216.33 old revision restored (2026/06/08 07:28) |
notes:html_cheat_sheet [2026/07/31 17:43] (current) 47.77.232.228 old revision restored (2026/05/28 00:59) |
||
|---|---|---|---|
| Line 12: | Line 12: | ||
| <code html> | <code html> | ||
| < | < | ||
| - | < | + | |
| - | <body background=url> | + | <body background=url> |
| </ | </ | ||
| </ | </ | ||
| + | * HTML 4 comes in three versions : | ||
| + | * Strict which contains no deprecated elements or frames <code html> | ||
| + | < | ||
| + | " | ||
| + | " | ||
| + | * Transitional which includes deprecated elements <code html> < | ||
| + | " | ||
| + | " | ||
| + | * Frameset which includes deprecated elements and frames <code html>< | ||
| + | " | ||
| + | " | ||
| ==== HTML Components ==== | ==== HTML Components ==== | ||
| Line 113: | Line 124: | ||
| ==== Advanced HTML ==== | ==== Advanced HTML ==== | ||
| - | * HTML 4 comes in three versions : | ||
| - | * Strict which contains no deprecated elements or frames <code html> | ||
| - | < | ||
| - | " | ||
| - | " | ||
| - | * Transitional which includes deprecated elements <code html> < | ||
| - | " | ||
| - | " | ||
| - | * Frameset which includes deprecated elements and frames <code html>< | ||
| - | " | ||
| - | " | ||
| * Example style declaration in head <code html> | * Example style declaration in head <code html> | ||
| < | < | ||
| Line 131: | Line 131: | ||
| </ | </ | ||
| </ | </ | ||
| + | * <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> | ||
| + | <meta name=" | ||
| + | <meta name=" | ||
| + | <meta name=" | ||
| + | <meta http-equiv=" | ||
| + | </ | ||
| + | * A simple script in a webpage <code html> | ||
| + | < | ||
| + | <script type=" | ||
| + | <!-- //to prevent display in older browsers | ||
| + | document.write(" | ||
| + | //--> | ||
| + | </ | ||
| + | < | ||
| + | </ | ||
| + | * An object element with child param elements can also be used to embed content. | ||
| + | |||
| + | |||