Tags Flashcards

1
Q

The – tag is used to create paragraphs of text. The
syntax is as follows:

A

<p>
</p>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The — tag is used to create links to other web pages or
resources. The syntax is as follows:

A

**<a>**</a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The — tag is used to insert images into a web page. The
syntax is as follows:

A

<img></img>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

HTML provides two types of lists:

A

ordered lists (<ol>) and
unordered lists (<ul>).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

HTML provides a number of elements for creating forms,
which are used to collect user input

A

<form action=""> </form>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

tag is used to create a
form, and different types of input elements can be used within the form,
such as text boxes, radio buttons, checkboxes, and dropdown menus.

A

<form action=""> </form>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

HTML provides the _ tag for creating tables on a web
page.

A

<Table>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The <div> and <span> tags are used to group
elements together for styling purposes.</span>

A

**<div class="container">

<h1>Welcome to my website</h1>

<p>Here you will find information about my products and
services.</p>

<span>Contact us</span> for more information.
</div>**

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

tags for
embedding audio and video files in a web page

A

**<audio></audio>

<source></source>

Your browser does not support the audio element.
</audio>

<video>
<source></source>
Your browser does not support the video element.
</video>

**

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

tags for
embedding audio and video files in a web page

A

**<audio></audio>

<source></source>

Your browser does not support the audio element.
</audio>

<video>
<source></source>
Your browser does not support the video element.
</video>

**

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

can be used to
provide additional information about a web page, such as its title,
description, and keywords.

A

**<meta></meta>

<meta></meta>

<meta></meta>

<meta></meta>

**

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

allows you to add comments to your code using the
— syntax.

A

<!-- -->

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

This function is used to perform arithmetic calculations in CSS.
It can be used to calculate values for properties such as width, height,
and margin.

A

calc()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

This function is used to specify the location of an external
resource such as an image or a font.

A

url()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly