Nesting / Tables
Recap of previous lesson
A basic structure for every HTML page.
Remember
- What is inside the
<head>is not visible to the visitor. Only for 'computers'. - What is inside the
<body>is visible to the visitor. - All visible content should be inside the
<body>.
Recap quiz
Tables
Nesting
It is important that we indent tags that are inside of each other for readability. This act is called nesting.
You can see that <title> is nested inside <head> which makes <head> the parent of <title>. And <title> is the child of <head>. Code is indented using Tab. You can un-indent using Shift + Tab. You can also select multiple lines and then indent. Try it out!