HTML

full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No study sessions yet.

19 Terms

1

What does HTML stand for?

Hypertext Markup Language.

<p>Hypertext Markup Language.</p>
2

What is HTML used for?

It is the language for making webpages.

3

How does HTML tell the browser what to do?

By using special tags to define how content should be displayed.

<p>By using special tags to define how content should be displayed.</p>
4

What is the function of the <h1> tag?

Makes a heading on a webpage.

5

Give an example of an <h1> tag.

<h1> Welcome to my website! </h1>

6

What is the function of the <p> tag?

Makes a paragraph of text.

7

What is the function of the <b> tag?

Makes text bold.

8

What is the function of the <i> tag?

Makes text italic.

9

What is the function of the <u> tag?

Underlines text.

10

What is the function of the <br> tag?

Creates a line break.

11

What is the function of the <img> tag?

Inserts an image.

12

What does “src” mean in an tag?

Source - tells the browser what file to display.

13

What is the function of the <a> tag?

Anchor tag, used to create a hyperlink.

14

What does “href” mean in an tag?

Hyperlink reference - tells the browser what site to open.

15

What is the function of the <ul> tag?

Makes a unordered list.

16

What is the function of the <li> tag?

Adds a list item.

17

What are meta-tags used for?

To give details about a page's content, such as description.

18

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.

19

Why are tags important in HTML?

They define the structure and formatting of a webpage.