0% found this document useful (0 votes)
239 views

HTML Q.

1. The document provides information about various HTML tags and concepts through multiple choice questions. It covers topics like including styles, DOCTYPE, headings, links, lists, images, tables, forms, multimedia, and layouts. 2. HTML allows adding styles via internal style tags, inline styles, external style sheets, or a combination. Key tags discussed include headings, links, lists, images, tables, forms, and div for layouts. 3. CSS is used with HTML for formatting and layouts. Important concepts covered are colors, alignment, multimedia embedding, and form attributes.

Uploaded by

ANIRUDDHA SAHA
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
239 views

HTML Q.

1. The document provides information about various HTML tags and concepts through multiple choice questions. It covers topics like including styles, DOCTYPE, headings, links, lists, images, tables, forms, multimedia, and layouts. 2. HTML allows adding styles via internal style tags, inline styles, external style sheets, or a combination. Key tags discussed include headings, links, lists, images, tables, forms, and div for layouts. 3. CSS is used with HTML for formatting and layouts. Important concepts covered are colors, alignment, multimedia embedding, and form attributes.

Uploaded by

ANIRUDDHA SAHA
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

HTML c) Mute

d) Auto play
1. We can include styles in our HTML
document via
9. id, href and class are
a) Style tag
a) Tags
b) Tag attribute
b) Elements
c) External Style Sheet
c) None of these
d) All of these options
d) Attributes
2. <! DOCTYPE html> is a
10. We can specify the colour in the form of
a) Empty Element
a) HEX values
b) Self-closing Tag
b) All of these
c) Nested Element
c) RGB values
d) Comment
d) Colour name
3. Find the odd one
11. Heading tag has ___ levels
a) <p> … </p>
a) 8
b) <head> … </head>
b) 7
c) <hr>
c) 5
d) <b> … </b>
d) 6
4. <a> is an
12. Find the odd one
a) None of them
a) tt
b) align tag
b) td
c) alternative text
c) tr
d) anchor tag
d) th

13. HTML Tags are always written in between


5. &lt; will generate a) Backslashes
a) Left alignment b) Angular brackets
b) List element c) Curly brackets
c) Less than symbol d) Parenthesis
d) List title
14. ______ element is used to perform an
6. We can include the script file with the help action when it is clicked.
of a) Button
a) <link> b) Field set
b) <base> c) Textbox
c) <script> d) Date/Time
d) <a>
15. Image map is used to
7. We have to set the list style a) Select specific area in the image
_________________. b) Create custom image
a) No need to set explicitly c) Select specific image source
b) Inside the list type start tag d) Map image to the text
c) Before the list
d) Inside the list element start tag 16. Find the odd one out
a) <section>
8. Find the odd one out for audio and video b) <nav>
tag c) <footer>
a) Poster d) <head>
b) Loop
17. We can combine the table cells with the o False
help of 26. <a href="https://spoken-tutorial.org"
a) <cellspan> target="_blank"> <img src=" " alt="My Image"
b) <rowspan> style="width:150px;height:200px;"> </a> The
c) <columnspan> above code will generate _______ with a link to
d) Both b and c the Spoken Tutorial website.
e) Both a and c a) Image
f) Both a and b b) A text, “My Image”
c) Display “Spoken Tutorial”
18. ________ will list the contents in the form d) Will not generate anything
of bulleted points.
a) Nested list 27. If the source audio or video is not
b) Definition list supported by the browser, it will display
c) Ordered list a) Only thumbnail
d) Unordered list b) Your browser does not support the tag
c) The alternative text
19. <legend> tag is used to d) An empty player
a) Create a label for the form element
b) Give a name for the fieldset 28. OGV is a
c) Both a and b a) Script file format
d) Neither a nor b b) Video file format
c) None of these
20. We have to write th tag in between the td d) Image file format
start and end tag.
o True 29. ____ will align the text to the left of the
o False page.
a) style="text-align:left"
21. Using lists we can format menus and links b) text-align = “left"
in HTML. c) style="text align:left"
o True d) align:left
o False
30. __________ element feature is similar to
22. Web video will not play in Firefox web Google search.
browser. a) Fieldset
o True b) Datalist
o False c) Searchbox
d) Textbox
23. HTML is mostly used for server side
coding. 31. How can we set the page background
o True colour to blue?
a) <page bgcolor = ”blue”>
o False
b) <body bgcolor = “blue”>
c) <body style=”background-color:blue”>
24. wav audio will only play in the Internet
d) <page style=”background-color:blue”>
Explorer web browser.
o True
32. <del> tag will ____ the content on the
o False
browser.
a) Delete
25. The output of strong & bold and b) Hide
emphasize & italic tags are identical. c) Strikethrough
o True d) Reduce the opacity
33. <p title='Mumbai Farmer’s Market'> 40. <video src="intro.ogv" width="640"
sample text </p> will display height="360” controls>
a) sample text This will create a video player with
b) Nothing a) Volume control
c) Mumbai Farmer b) Timeline slider
d) Mumbai Farmer’s Market c) All of these controls
d) Play/Pause button
34. The form Attribute ________ compels the
user to fill the field, without skipping it. 41. Square shape bullet point can be created
a) Mandatory with the help of
b) Required a) Definition list
c) Onfocus b) Ordered list
d) Validate c) Unordered list
d) Nested list
35. The target value _____ opens the link in a
new tab.
a) _parent 42. With the help of ______ and CSS we can
b) _self create Web Layouts.
c) _blank a) Styles
d) _top b) Lists
c) Formatting tags
36. ___________ method will pass the values d) Div tag
via URL.
a) SET 43. HTML stands for
b) POST a) High Texturing Machine Language
c) GET b) Hyper Text Manipulation Language
d) PASS c) Hyper Text Markup Language
d) Hyper Text Markup Learning
37. __________ tag will create a line break.
a) <br> 44. CSS is a
b) <lb> a) Script
c) <break> b) External style sheet
d) <b c) Inline style element
d) HTML tag
38. The following syntax is for
45. WYSIWYG stands for
<dl> <dt> Name 1</dt> <dd> value 1 </dd>
<dt> Name 2 </dt> <dd> value 1 </dd> a) What You Surf is What You Get
<dd> value 2 </dd> </dl> b) What You Search Is What You Get
a) Unordered list c) What You See is What You Get
b) Nested list d) What You Study is What You Get
c) Definition list
d) Ordered list

39. Which one of the below HTML code is


written correctly?
a) <p> <b> My Topic </p> </b> <i> My text </i>
b) <p> <b> My Topic </b> <i> My text </i>
</p>
c) <p> <b> My Topic <i> My text </i> </p> </b>
d) <p> <b> My Topic </p> <i> My text </i>

You might also like