Podcast
Questions and Answers
What does HTML stand for?
What does HTML stand for?
Which of the following tags is not closed in HTML?
Which of the following tags is not closed in HTML?
What is the attribute for changing the size of a font in HTML?
What is the attribute for changing the size of a font in HTML?
How do you add an image in HTML?
How do you add an image in HTML?
Signup and view all the answers
Which HTML element is used to display data in rows and columns?
Which HTML element is used to display data in rows and columns?
Signup and view all the answers
What is the purpose of the
tag?
What is the purpose of the
tag?
Signup and view all the answers
Which tag is used to create a new paragraph?
Which tag is used to create a new paragraph?
Signup and view all the answers
What does the
tag represent in HTML?
What does the
tag represent in HTML?
Signup and view all the answers
Which attribute of the tag is used to change the font type?
Which attribute of the tag is used to change the font type?
Signup and view all the answers
What is the correct way to specify a link to another web page in HTML?
What is the correct way to specify a link to another web page in HTML?
Signup and view all the answers
Which tag is used to create a dropdown list in HTML?
Which tag is used to create a dropdown list in HTML?
Signup and view all the answers
Which tag is used to specify a table row in HTML?
Which tag is used to specify a table row in HTML?
Signup and view all the answers
Which attribute specifies the number of times a marquee scrolls?
Which attribute specifies the number of times a marquee scrolls?
Signup and view all the answers
Which tag is used to define a data cell in a table?
Which tag is used to define a data cell in a table?
Signup and view all the answers
What does the
tag do in HTML?
What does the
tag do in HTML?
Signup and view all the answers
Which attribute specifies the background color of a web page?
Which attribute specifies the background color of a web page?
Signup and view all the answers
What does the 'src' attribute in the tag specify?
What does the 'src' attribute in the tag specify?
Signup and view all the answers
Which tag is used to define an ordered list?
Which tag is used to define an ordered list?
Signup and view all the answers
How do you specify a video file to display in HTML?
How do you specify a video file to display in HTML?
Signup and view all the answers
Which of the following is a valid hyperlink syntax?
Which of the following is a valid hyperlink syntax?
Signup and view all the answers
Which tag is used to define the header of a table?
Which tag is used to define the header of a table?
Signup and view all the answers
Which attribute of the
tag changes the color of the text?
Which attribute of the
tag changes the color of the text?
Signup and view all the answers
Which attribute is essential for an image tag to specify its source?
Which attribute is essential for an image tag to specify its source?
Signup and view all the answers
Which tag is used to create a hyperlink to another file?
Which tag is used to create a hyperlink to another file?
Signup and view all the answers
What is the default alignment of text in a paragraph in HTML?
What is the default alignment of text in a paragraph in HTML?
Signup and view all the answers
How do you define a table data cell in HTML?
How do you define a table data cell in HTML?
Signup and view all the answers
Which tag specifies a moving text in HTML?
Which tag specifies a moving text in HTML?
Signup and view all the answers
Which of the following is an ordered list pointer type?
Which of the following is an ordered list pointer type?
Signup and view all the answers
Which tag creates a new row in a table in HTML?
Which tag creates a new row in a table in HTML?
Signup and view all the answers
Study Notes
HTML Tag Definitions and Functions
- HTML: Hyper Text Markup Language
- <TITLE> tag: Defines the title of a web page
- <BODY> tag: Contains the main content of a web page
- <H1> tag: Represents the largest heading
- <HR> tag: Creates a horizontal line
-
<A> tag: Creates a hyperlink , correct syntax
<A HREF="url">
- <STRONG> tag: Makes text bold
- <UL> tag: Creates an unordered list
- <LI> tag: Defines a list item in an unordered list
- <OL> tag: Defines an ordered list
- <P> tag: Creates a new paragraph
- <BR> tag: Inserts a line break
- <TABLE> tag: Organises data into rows and columns
- <TR> tag: Specifies a row in a table
- <TD> tag: Defines a cell in a table
- <TH> tag: Defines a header cell in a table
- <IMG> tag: Adds an image, required attribute is SRC
-
<FONT> tag: Used for font styling (e.g., type, size, color). The
FACE
attribute is used for changing the font type - <CENTER> tag: Centers the content within
- <BGSOUND> tag: Plays a background sound (deprecated - use
- <MARQUEE> tag: Creates scrolling text
-
<IMG> tag attribute:
WIDTH
attribute specifies the width of an image -
<A> tag attribute: the
TARGET="_blank"
attribute open a link in a new tab. - <FONT COLOR> tag attribute: to set text color
HTML Tag Purposes and Attributes
-
<BODY BGCOLOR>: Specifies a specific background color for a webpage,
<BODY BGCOLOR="color">
-
<IMG SRC>: Specifies the source file for an image.
<IMG SRC="image_path">
-
<P ALIGN>: Sets the paragraph alignment (
left
,center
,right
).
Additional HTML Tag Information
-
<H1> through <H6> tags: Used for headings (decreasing size from
to
).
-
<FONT SIZE> tag attribute: to set font size (e.g.,
<FONT SIZE="5">
) -
<FONT FACE> attribute: Sets the font type or family (e.g.,
<FONT FACE="Arial">
) -
<FONT COLOR>
attribute: Changes the font color (e.g.,<FONT COLOR="red">
)
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
Test your knowledge on HTML tag definitions and functions with this interactive quiz. You'll learn about essential tags such as <TITLE>, <BODY>, and <A>, as well as their uses in web development. Perfect for beginners wanting to solidify their understanding of HTML.