032.3 HTML References and Embedded Resources Flashcards

1
Q

Any modern web page is rarely made of just text.

A

It comprises many other types of contents, such
as images, audio, video and even other HTML documents.

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

The most common type of embedded content

A

Images are kept
separately and are referenced inside the HTML file with the <img></img> tag:

<img></img>

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

The <img></img> tag does not require

A

a closing tag

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

indicates the source location for the image file.

A

src property

<img></img>

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

<img></img>

The two dots indicate that the image

A

is located inside the parent directory relative to the directory where the HTML file is

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

applies if the HTML file isn’t an actual file in the filesystem; the HTML browser interprets the URL as if it is a path to a file, but it is the HTTP server’s job to decide whether that path refers to a file or to dynamically generated content.

A

dot notation

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

absolute paths.

A

Source locations beginning with a forward slash /

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

composed of geographically distributed servers that
store static content for other websites. They help to improve performance and
availability for heavy accessed sites

A

Content Delivery Networks

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

attribute is also important for accessibility. Text-only browsers and screen readers use it as a description for the corresponding image.

A

alt

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

distorted when the original size is smaller than the new dimensions or when the
new proportion ratio differs from the original

A

images

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

Doing this to large images uses extra bandwidth that will result in longer loading timings.

A

downsizing

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