part 1: complete the sentences: 1. every opening tag must have a ______ tag. 2. you can put css in the ____…

part 1: complete the sentences: 1. every opening tag must have a ______ tag. 2. you can put css in the ____ tag. 3. html stands for hypertext ______ language. part 2: multiple choice (circle the correct answer): 1. which tag will make text look like this? a. <p> b. <i> c. <b> d. <bold> 2. which language can you use to style your website? a. css b. javascript c. stylescript d.python 3. which line of html code has an error? a. <p>this is a para<b>graph</b></p> b. <h3><p>this is another paragraph</h3></p> c. <h1><h3>a simple heade<i>r</i></h3></h1> d. <p>this paragraph is special<br></p>

part 1: complete the sentences: 1. every opening tag must have a ______ tag. 2. you can put css in the ____ tag. 3. html stands for hypertext ______ language. part 2: multiple choice (circle the correct answer): 1. which tag will make text look like this? a. <p> b. <i> c. <b> d. <bold> 2. which language can you use to style your website? a. css b. javascript c. stylescript d.python 3. which line of html code has an error? a. <p>this is a para<b>graph</b></p> b. <h3><p>this is another paragraph</h3></p> c. <h1><h3>a simple heade<i>r</i></h3></h1> d. <p>this paragraph is special<br></p>

Answer

Brief Explanations:

  1. In HTML, every opening tag has a closing tag to properly structure the document.
  2. CSS can be put in the <style> tag to style HTML elements.
  3. HTML stands for Hyper - Text Markup Language. For multiple - choice:
  4. The <i> tag is used for italic text.
  5. CSS (Cascading Style Sheets) is used to style websites.
  6. In option C, <h1><h3> is incorrect as heading tags should be properly nested and not overlap in this way.

Answer:

Part 1:

  1. closing
  2. <style>
  3. Markup Part 2:
  4. B. <i>
  5. A. CSS
  6. C. <h1><h3>A simple heade<i>r</i></h3></h1>