| Tage | Result |
|---|---|
| < b > | Bold text |
| < strong > | Important text |
| < i > | Italic text |
| < em > | Emphasized text |
| < mark > | Marked text |
| < small > | Smaller text |
| < del > | Deleted text |
| < ins > | Inserted text |
| < sub > | Subscript text |
| < sup > | Superscript text |
The element can be used in an HTML document to tell the browser where to find the CSS file used to style the page. It is an empty element (meaning it does not need a closing tag), and it lives inside the element. It should use three attributes:
This specifies the relationship between the HTML page and the file it is linked to. The value should be stylesheet when linking to a CSS file.
You can also include CSS rules within an HTML page by placing them inside a <style> element, which usually sits inside the element of the page.
The <style> element should use the type attribute to indicate that the styles are specified in CSS. The value should be text/ css.
Loops are handy, if you want to run the same code over and over again, each time with a different value.
- for : loops through a block of code a number of times
- for/in : loops through the properties of an object
- for/of : loops through the values of an iterable object
- while : loops through a block of code while a specified condition is true
- do/while - also loops through a block of code while a specified condition is true



