true or false (5 points)\n11. the <title> tag is placed inside the <body> section. (t/f)\n12. html is a…

true or false (5 points)\n11. the <title> tag is placed inside the <body> section. (t/f)\n12. html is a programming language. (t/f)\n13. <br> is used to create a line break in html. (t/f)\n14. you must always close the <img> tag. (t/f)\n15. the <div> tag is used to define sections of a webpage. (t/f)

true or false (5 points)\n11. the <title> tag is placed inside the <body> section. (t/f)\n12. html is a programming language. (t/f)\n13. <br> is used to create a line break in html. (t/f)\n14. you must always close the <img> tag. (t/f)\n15. the <div> tag is used to define sections of a webpage. (t/f)

Answer

Explanation:

Step1: Analyze <title> tag

The <title> tag is placed inside the <head> section, not <body>. So 11 is False.

Step2: Analyze HTML nature

HTML is a markup - language, not a programming language. So 12 is False.

Step3: Analyze <br> tag

The <br> tag is used to create a line break in HTML. So 13 is True.

Step4: Analyze <img> tag

In HTML5, the <img> tag is a self - closing tag and doesn't always have to be explicitly closed with a / at the end, but it's a good practice. But strictly speaking, it's not always required to close it in the traditional sense. So 14 is False.

Step5: Analyze <div> tag

The <div> tag is used to define sections of a webpage. So 15 is True.

Answer:

  1. False
  2. False
  3. True
  4. False
  5. True