Web Page
HTML
<!DOCTYPE html>
<meta></meta>
character set (charset)
<head>
</head>
This appears at the top of a browser window, and is significant in many ways.
<title>
</title>
internal CSS
external CSS
id
class
Using developer tools
The Elements tab in developer tools
CSS
-These are how you apply styles to HTML elements. CSS rules have a selector which is used to express which element, or elements, the styles should be applied to.
Each rule has:
- A selector. body and ul are the selectors of the two rules and are used to select which element(s) the styles apply to.
- An opening curly brace ({).
- A list of style declarations that determine what the selected element(s) should look like.
- A closing curly brace (}).
CSS rules
Selectors
JavaScript (or ECMAScript)
Event Handler