0% found this document useful (0 votes)
4 views2 pages

Answer Key - Chapter 7 - HTML

The document is a revision worksheet for Chapter 7 on HTML 5, covering fill-in-the-blank questions, true/false statements, and short answer questions about HTML, CSS, and related concepts. It includes explanations of intranet, features of HTML 5, sections of an HTML document, and the benefits of Cascading Style Sheets. Additionally, it provides sample HTML code for creating web pages with specific formatting requirements.

Uploaded by

sinharidhima534
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

Answer Key - Chapter 7 - HTML

The document is a revision worksheet for Chapter 7 on HTML 5, covering fill-in-the-blank questions, true/false statements, and short answer questions about HTML, CSS, and related concepts. It includes explanations of intranet, features of HTML 5, sections of an HTML document, and the benefits of Cascading Style Sheets. Additionally, it provides sample HTML code for creating web pages with specific formatting requirements.

Uploaded by

sinharidhima534
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Revision Worksheet

Chapter 7 - Introduction to HTML 5

Q1. Fill in the blanks.


1. It is a language that uses special symbols called tags to mark-up a text
document.
2. <html> tag is also known as root element.
3. The full form of CSS is Cascading Style Sheets .
4. The HTML code is made up of elements, tags and attributes .

Q2. State True or False


1. HTML is the latest version of HTML. False Ans. HTML 5
2. Tim Berners Lee is the inventor of WWW. True
3. <br> is text-level element. True
4. A property and its value is collectively known as Declaration in CSS. True

Q3. Answer in one word.


1. What does HTML Stands for? Hypertext Mark-up language
2. Name any one tool that can also be used to develop HTML web pages.
HTML editor/Browser/Macromedia Dreamweaver/Microsoft Frontpage
3. Name any one text editor and browser. Text editor: WYSIWYG (What You
See Is What You Get)/ Notepad, Browser: Google Chrome/ Mozilla Firefox/
Microsoft Edge/ Apple Safari
4. Name any one container and empty tag. Container: <html> <head> <body>
<p>, Empty: <br> <hr>

Q4. Answer the following questions.


1. Write a short note on intranet.
An intranet is a corporate organizational network that uses the same protocols
used on the internet to share files and send e-mail.

2. What are the features of HTML 5.


HTML is the latest version of HTML. It is a mark-up language using which you
can create a web page is an easy and convenient way. Now, adding audio and
video clips in the web page is as easy as including images, which was not
possible in the earlier versions without the support of external software or plug-
ins like Flash Player, With the CANVAS feature, you can also draw images
directly in the web page. All these attributes of this new version have added
relevance and credibility to it.

3. Write a short note on sections of HTML document.


HTML document has two sections:
-Head section: It provides general information about the document. Eg: <title>
defines title for the page on broswer’s tab.

-Body section: This section contains the text that gets displayed on the web page
along with the other tags and attributes. It includes text, graphics and the other
HTML elements that provide control and formatting to a page, like fonts,
paragraph, list and other elements.

4. What are Cascading Stylesheets? Also write its benefits.


CSS is a style sheet that provides a set of Style rules for defining the layout of
HTML documents, Using CSS you can control the colour of the text, the style
of fonts, the spacing between paragraphs, size and layout of columns,
background images as well as a variety of other effects.
Benefits:
I) More advanced options and sophisticated techniques.
II) Apply different layout to different media types (screen, print, etc)
III) More precise control of layout.
IV) Control layout of many documents from one single style sheet (External
Style Sheet)

Q5. Write the code for following:

1. Create a web page using HTML to give heading as “Artificial Intelligence“,


the heading should be italics and it should be in center.
<html>
<body>
<h1><i><center>Artificial Intelligence</center></I></h1>
</body>
</html>
2. Create a web page using HTML to write a paragraph on your ‘Favourite Food’,
paragraph should be in underline and bold.
<html>
<body>
<p><u><bold>Pizza is a delicious, versatile dish with a crispy crust, topped
with cheese, sauce, and a variety of flavorful toppings.</bold></u></p>
</body>
</html>

You might also like