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>
Answer
Brief Explanations:
- In HTML, every opening tag has a closing tag to properly structure the document.
- CSS can be put in the
<style>tag to style HTML elements. - HTML stands for Hyper - Text Markup Language. For multiple - choice:
- The
<i>tag is used for italic text. - CSS (Cascading Style Sheets) is used to style websites.
- In option C,
<h1><h3>is incorrect as heading tags should be properly nested and not overlap in this way.
Answer:
Part 1:
- closing
<style>- Markup Part 2:
- B. <i>
- A. CSS
- C. <h1><h3>A simple heade<i>r</i></h3></h1>