html Flashcards

1
Q

<abbr></abbr>

A

abbreviation tag
e.g The <abbr>WHO</abbr> was founded in 1948.

hover the word WHO will show the full form

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

<address>
</address>

A

Defines contact information for the author/owner of a document

The text in the <address> element usually renders in italic, and browsers will always add a line break before and after the <address> element.

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

<area></area>

A

Defines an area inside an image map

<area></area>

elements are always nested inside a <map> tag.

e.g.

<map>
<area></area>
<area></area>
</map>

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

<article>
</article>

A

Defines an article

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

<aside>
</aside>

A

Defines content aside from the page content

Tip: The <aside> content is often placed as a sidebar in a document.

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

<audio>
</audio>

A

Defines embedded sound content

The <audio> tag contains one or more <source></source> tags with different audio sources. The browser will choose the first source it supports.</audio>

The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element.</audio>

3 supported audio formats in HTML: MP3, WAV, and OGG.

e.g

<audio>
<source></source>
<source></source>
Your browser does not support the audio tag.
</audio>

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

<!--...-->

A

comment tag

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

<!DOCTYPE>

A

All HTML documents must start with a <!DOCTYPE> declaration.

e.g <!DOCTYPE html>

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

<a></a>

A
  • defines a hyperlink
  • usually with href attribute, which indicates the link’s destination
    <a>Visit W3Schools.com!</a>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q
A
18
Q
A
19
Q
A
20
Q
A
21
Q
A
22
Q
A
23
Q
A
24
Q
A
25
Q
A
26
Q
A
27
Q
A
28
Q
A
29
Q
A
30
Q
A
31
Q
A
32
Q
A
33
Q
A
34
Q
A
35
Q
A
36
Q
A
37
Q
A
38
Q
A
39
Q
A
40
Q
A
41
Q
A