INTRODUCTION TO HTML 5 CLASS VII
INTRODUCTION TO HTML 5 Q1 1. (d) <hr> and <br> 2. (b) <title> 3. (d) Notepad and Wordpad 4. (a) <h1> 5. (a) <b> Q2. Fill in the blanks – 1. Hypertext 2. Container and empty 3. HTML5 4. HEAD 5. BODY 1. <HTML> The html element is used to tell the browser that the document is HTML document. Every webpage code must start with <html> and end with </html>. 2. <TITLE> element is used to tell the browser that the text within <title> and </title> tags is the title of the webpage. The title tag appears on the title bar of the browser. 3. <IMG> tag is used to insert image in a webpage. The <img> tag is an empty element and creates space for the image to be inserted. 4. <BR> The <br> HTML element produces a line break in the text. It is useful f...