1/18
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No study sessions yet.
What does HTML stand for?
Hypertext Markup Language.

What is HTML used for?
It is the language for making webpages.
How does HTML tell the browser what to do?
By using special tags to define how content should be displayed.

What is the function of the <h1> tag?
Makes a heading on a webpage.
Give an example of an <h1> tag.
<h1> Welcome to my website! </h1>
What is the function of the <p> tag?
Makes a paragraph of text.
What is the function of the <b> tag?
Makes text bold.
What is the function of the <i> tag?
Makes text italic.
What is the function of the <u> tag?
Underlines text.
What is the function of the <br> tag?
Creates a line break.
What is the function of the <img> tag?
Inserts an image.
What does “src” mean in an tag?
Source - tells the browser what file to display.
What is the function of the <a> tag?
Anchor tag, used to create a hyperlink.
What does “href” mean in an tag?
Hyperlink reference - tells the browser what site to open.
What is the function of the <ul> tag?
Makes a unordered list.
What is the function of the <li> tag?
Adds a list item.
What are meta-tags used for?
To give details about a page's content, such as description.
Give an example of a meta-tag.
An example of a meta-tag is <meta name="description" content="This is a sample webpage.">, which provides a brief description of the page's content.
Why are tags important in HTML?
They define the structure and formatting of a webpage.