Podcast
Questions and Answers
What does HTML stand for?
What does HTML stand for?
- Hyper Tool Markup Language
- Hyper Transfer Markup Language
- Hyper Text Makeup Language
- Hyper Text Markup Language (correct)
Which of the following tags is not closed in HTML?
Which of the following tags is not closed in HTML?
- <div>
- <br> (correct)
- <p>
- <span>
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?
- TEXT-SIZE
- SIZE (correct)
- FONT-SIZE
- TYPE
How do you add an image in HTML?
How do you add an image in HTML?
Which HTML element is used to display data in rows and columns?
Which HTML element is used to display data in rows and columns?
What is the purpose of the
tag?
What is the purpose of the
tag?
Which tag is used to create a new paragraph?
Which tag is used to create a new paragraph?
What does the
tag represent in HTML?
What does the
tag represent in HTML?
Which attribute of the tag is used to change the font type?
Which attribute of the tag is used to change the font type?
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?
Which tag is used to create a dropdown list in HTML?
Which tag is used to create a dropdown list in HTML?
Which tag is used to specify a table row in HTML?
Which tag is used to specify a table row in HTML?
Which attribute specifies the number of times a marquee scrolls?
Which attribute specifies the number of times a marquee scrolls?
Which tag is used to define a data cell in a table?
Which tag is used to define a data cell in a table?
What does the
tag do in HTML?
What does the
tag do in HTML?
Which attribute specifies the background color of a web page?
Which attribute specifies the background color of a web page?
What does the 'src' attribute in the
tag specify?
What does the 'src' attribute in the tag specify?
Which tag is used to define an ordered list?
Which tag is used to define an ordered list?
How do you specify a video file to display in HTML?
How do you specify a video file to display in HTML?
Which of the following is a valid hyperlink syntax?
Which of the following is a valid hyperlink syntax?
Which tag is used to define the header of a table?
Which tag is used to define the header of a table?
Which attribute of the
tag changes the color of the text?
Which attribute of the
tag changes the color of the text?
Which attribute is essential for an image tag to specify its source?
Which attribute is essential for an image tag to specify its source?
Which tag is used to create a hyperlink to another file?
Which tag is used to create a hyperlink to another file?
What is the default alignment of text in a paragraph in HTML?
What is the default alignment of text in a paragraph in HTML?
How do you define a table data cell in HTML?
How do you define a table data cell in HTML?
Which tag specifies a moving text in HTML?
Which tag specifies a moving text in HTML?
Which of the following is an ordered list pointer type?
Which of the following is an ordered list pointer type?
Which tag creates a new row in a table in HTML?
Which tag creates a new row in a table in HTML?
Flashcards
HTML Ordered List
HTML Ordered List
A numbered list in HTML, using the tag. Items are displayed with sequential numbers.
HTML Font Type
HTML Font Type
The tag's attribute changes the font face.
Hyperlink to Yahoo
Hyperlink to Yahoo
A link that opens a webpage using a URL, like Yahoo's. It goes to another web page when clicked.
HTML Centered Content
HTML Centered Content
Signup and view all the flashcards
HTML Table Row
HTML Table Row
Signup and view all the flashcards
HTML Table Data
HTML Table Data
Signup and view all the flashcards
HTML Hyperlink Tag
HTML Hyperlink Tag
Signup and view all the flashcards
HTML Unordered List Item
HTML Unordered List Item
Signup and view all the flashcards
HTML abbreviation
HTML abbreviation
Signup and view all the flashcards
Title tag
Title tag
Signup and view all the flashcards
Image tag
Image tag
Signup and view all the flashcards
Hyperlink tag
Hyperlink tag
Signup and view all the flashcards
Bold text
Bold text
Signup and view all the flashcards
Paragraph tag
Paragraph tag
Signup and view all the flashcards
Background Color
Background Color
Signup and view all the flashcards
Ordered List
Ordered List
Signup and view all the flashcards
HTML tag for playing a sound file
HTML tag for playing a sound file
Signup and view all the flashcards
HTML tag for a new line
HTML tag for a new line
Signup and view all the flashcards
HTML background color attribute
HTML background color attribute
Signup and view all the flashcards
HTML italic text format
HTML italic text format
Signup and view all the flashcards
Ordered list HTML tag
Ordered list HTML tag
Signup and view all the flashcards
HTML table height attribute
HTML table height attribute
Signup and view all the flashcards
HTML image within table tag
HTML image within table tag
Signup and view all the flashcards
HTML tag attribute for links
HTML tag attribute for links
Signup and view all the flashcards
Line break tag
Line break tag
Signup and view all the flashcards
Table header tag
Table header tag
Signup and view all the flashcards
Image source attribute
Image source attribute
Signup and view all the flashcards
Default paragraph text alignment
Default paragraph text alignment
Signup and view all the flashcards
New tab link tag
New tab link tag
Signup and view all the flashcards
Ordered list pointer types
Ordered list pointer types
Signup and view all the flashcards
HTML table data cell
HTML table data cell
Signup and view all the flashcards
Hyperlink to another file
Hyperlink to another file
Signup and view all the flashcards
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.