Level Navigation: 0 | Current Level: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
Learn to generate the basic HTML structure using Emmet’s !
shortcut.
In index.html
:
! + [TAB]
What happened? Click to see.
This should have auto-generated the basic HTML structure for you page. This is often called "boilerplate".
<title>
tag in the <head>
section<title>CS Rocks!</title>
âś… Commit Reminder:
git add .
git commit -m "Add HTML boilerplate"
git push
🔄 Workflow Reminder: Remember to save (
Ctrl + S
) and refresh (Ctrl + R
) as you make changes!
You learned how to:
!
shortcut to generate HTML boilerplateThe !
shortcut is one of the most useful Emmet shortcuts for starting any HTML project!
Level Navigation: 0 | Current Level: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |