Jul 16, 2024
! (exclamation mark) followed by pressing Enter to generate HTML boilerplate using Emmet.Ctrl + S.h1 to h6: Tags used for headings, size decreases from h1 to h6.h1 per page for better SEO. Do not use headers for bold text.p tag: Used for paragraphs.p*4).Lorem command: Generates dummy text (Lorem4 for 4 words, Lorem40 for 40 words, etc.).*br tag: Self-closing tag used for line breaks.hr tag: Self-closing tag used for horizontal lines/rules.strong tag: Makes text bold.em tag: Italicizes text. Use CSS for detailed styling.b and i tags: Exists but not recommended for modern websites; use strong and em instead.p*4, Lorem40, etc.).Ctrl + Enter to jump to a new line without breaking current paragraph.Alt + Z or Command Palette in VS Code.*br for line breaks; it's not good practice. Use proper HTML structure and CSS for styling.Reminder: Keep practicing with the examples and techniques shown in the video, and take notes frequently to reinforce learning.