HTML Introduce Flashcards

Learn HTLM Code Academy Course

1
Q

What is HTML?

A

HTML stands for HyperText Markup Language and is used to create the structure and content of a webpage.

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

In what tag should be placed visually content?

A

visible content should be placed within the opening and closing (“”) tags

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

what’s the use of <h1> to <h6> tags?</h6></h1>

A

it is used in Headings and sub-headings, are used to enlarge text.

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

What tags do you use to emphasize text?

A

The (<em> and <strong>) tags are used to emphasize text.</strong></em>

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

which tags do you use to create Line breaks in an HTML doc?

A

Line breaks are created with the (<br></br>) tag.

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

which tags do you use to create a numbered ordered list?

A

The Numbered ordered list is created with (<ol>) tags.

Ej: “<ol>
<li><li>
</li><li><li>
</li></ol>”</ol>

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

which tags do you use to create numbered unordered list?

A

The unordered list is created with (<ul>) tags.

Ej: “<ul>
<li><li>
</li><li><li>
</li></ul>”</ul>

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

What elements contain an HTML?

A

Most HTML elements contain opening and closing tags with raw text or other HTML tags between them.

Ej: <h1>The Brown Bear</h1>

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

which tags do you use to create a list?

A

the Lists are created which (<li>) tag.</li>

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

which tags do you use to insert an image in an HTML doc?

A

you use (<img></img>) to insert an image in an HTML document.

Ej: “<img></img>”

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

which tags do you use to insert a video in an HTML doc?

A

you use () to insert an image in an HTML document.

Ej: “
Video not supported

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

For what do you use (src=””) in HTML?

A

is used to specify the source of a file, stored in your local machine or internet.

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

For what do you use (alt=””) in HTML?

A

The alt attribute, which means alternative text, it uses to add a description of an image, and search engine to index better your site.

Ej: <img></img>

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

what is the use of controls attribute in the video tags?

A

The controls attribute instructs the browser to include basic video controls: pause, play and skip.

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

what tags do you use to display text in an HTML?

A

If you want to display text in HTML, you can use a (<p> or <span>) tags.</span>

Ej: <p>The brown bear (Ursus arctos)</p></span></p>

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

what is the use of the (id=””) in HTML?

A

Help us identify content on our page.

Ej: <div>

<h1>Introduction</h1>

</div>

17
Q

what is the use of the (<div>) tags in HTML?</div>

A

the <div> element. <div> is short for “division” or a container that divides the page into sections and grouping elements in your HTML together.

Ej: "
  <div>
    <h1>Why use divs?</h1>
    <p>Great for grouping elements!</p>
  </div>
"</div></div>