- 7 common HTML elements
- head, html, div, span, p, body, title, table, tr, td...
- Difference between
class
andid
HTML attributesclass
can be used multiple times per page- Each element can have multiple classes
id
only once per page
- DOM
- Document Object Model; defines structure for web page.
- The hierarchy that the browser compiles to render its own internal representation of a web page and how its objects fit together.
- Javascript's
Array
corresponds to Python'slist
. - Javascript's
object
literal corresponds to Python'sdict
(although not really). - Did the things with the squares.
- Set up a web server with
python3 -m http.server 8887
. - Set up a web page at
https://sebastianfrelle.github.io
.
- Built the web page and published it to
https://sebastianfrelle.github.io
.