Grade 7 Chapter 6 Introduction to HTML
Grade 7 Chapter 6 Introduction to HTML
Class VII
Subject: Computer Science
Chapter 6 Introduction to HTML
2. What are the two types of HTML editors? Explain them briefly.
Ans: The two types of HTML editors are:
WYSIWYG Editor : It stands for What You see Is What You Get. These editors provide an in-built interface
wherein you can quickly design webpages without writing any HTML tags as well as preview the webpages.
Text Editor: Text editors such as Notepad and WordPad let us create HTML documents by writing HTML
commands.
3. List the tags that form the basic structure of an HTML document.
Ans: The basic structure of an HTML document is:
<HTML>
<HEAD>
<TITLE> Title of the webpage </TITLE>
</HEAD>
<BODY>
Tags that define the content of a webpage are written here.
</BODY>
</HTML>
*****