WorksheetsIntroduction to HTML
Total questions: 20
Worksheet time: 10mins
It is the standard markup language for creating Web pages.
HTML (Hyper Text Markup Language)
Javascript
CSS (Cascading Style Sheets)
HTML tags
HTML tags are element names surrounded by __________.
<angle brackets>
(round brackets)
[square brackets]
(round brackets) and [square brackets]
The start tag is also called the ____________, and the end tag the closing tag.
start tag
beginning tag
new tag
opening tag
HTML tags normally come _________ like <p> and </p>
in pairs
in groups
in one
in single
The correct sequence of HTML tags for starting a webpage is
A.Head, Title, HTML, body
B. HTML, Body, Title, Head
C. HTML, Head, Title, Body
D. HTML, Head, Title, Body
An HTML program is saved by using the ____ extension.
A. .ht
B. .html
C. .hml
D. None of the above
A program in HTML can be rendered and read by
A. Web browser
B. Server
C. Interpreter
D. None of the above
To create HTML page, you need
A. Web browser
B. Text editor
C. Both A & B
D. None of the above
Which symbol identifies a closing tag?
<>
/
()
\
What is this tag <head> used for ?
Used for declaring the title
Name of the document
What will be the output for the following program?
<html>
<body>
<p>Hello SJPS</p>
</body>
</html>
<Hello SJPS>
Hello SJPS
both are correct
Which of the following element is responsible for making the text italic in HTML?
A. <i>
B. <italic>
C. <it>
D. <pre>
Which tag would be used to give a new line
np
br
ul
nl
_________________ tag is used to underline the text.
<U>
<I>
____________ tag is used to make the text bold.
<BOLD>
<B>
