Newbie Coder Hub
Newbie Coder Hub
June 3, 2025 at 05:20 AM
*🔖 More HTML Tips & Notes* *7. Comments* Use comments to explain your code (they don't show on the page): ```html ``` --- *8. Bold & Italic Text* ```html Bold or Bold (important) Italic or Emphasis ``` --- *9. Adding a Table* ```html
Name Age
Amina 22
``` --- *10. HTML Forms (Input Fields)* ```html
Name:
``` --- *11. Line Break vs Paragraph* - `
` = Line break (no gap) - `

` = Paragraph (adds spacing) --- *12. Nest Elements Correctly* ✅ Correct: ```html

Hello

``` ❌ Wrong: ```html

Hello

``` --- *13. HTML is Not Case Sensitive* `

` = `

` = `

` → All work. But lowercase is preferred. ---

Comments