Introducing HTML and Addressing Web Pages — Unit 1 Flashcards

1
Q

What is the definition and full name of HTML?

A

HyperText Markup Language (HTML) is a modern standard markup language that uses common abbreviations called “tags’ to indicate to the web browser how the author would like to have sections of a web page laid out.

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

A structural element to contain the main content is what?

A

<main>
</main>

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

A structural element to contain stand-alone items of content, such as self-contained topic is what?

A

<article>
</article>

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

A structural element to group together associated content, such as articles related to a common topic is what?

A

<section>
</section>

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

A structural element to contain related content is what?

A

<aside>
</aside>

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

Structural elements to contain standalone illustrations diagrams, or photos for reference is what?

A

<figure>, <figcaption>
</figcaption></figure>

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

A structural element to contain page header content, such as a title, logo, and navigation is what?

A

<header>
</header>

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

A structural element to contain page footer content, such as copyright information and contact details is what?

A

<footer>
</footer>

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

Semantic elements to indicate pronunciation for East Asian languages, such as Japanese is what?

A

<ruby>, <rt>, and <rp></rp></rt></ruby>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  • Hot Tip *
A

HTML5 finally brings intrinsic support for audio and video content with codec support built into the browsers.

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

DON’T FORGET

A

Much effort has been made in HTML5 so that it does not “break the web” — by continuing to define how browsers should deal with legacy markup code.

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

Embedding elements to incorporate audio and video media, such as MP3 music files are what?

A

<audio>, <video>, and <source></source>
</video></audio>

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

An embedding element to incorporate media that DOES require an external plug-in, such as movies in SWF format is what?

A

<embed></embed>

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

An embedding element to create an area in which to dynamically draw bitmap graphics, such as graphs is what?

A

<canvas>
</canvas>

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

Interactive elements to contain additional information that users can choose to read is what?

A

<details>, <summary>
</summary></details>

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

Elements to add functionality to the web browser’s context menu is what?

A

<menu>, <menuitem>
</menuitem></menu>

17
Q

What do web servers use to allow any computer connected to any web server to access files across the web?

A

Web servers use the HyperText Transfer Protocol (HTTP) as a common communication standard to allow any computer connected to any web server to access files across the web.

18
Q

What are HTML web pages?

A

HTML web pages are merely plain text files that have been saved with a “.htm” or “.html” file extension, such as index.html

BEWARE

A web page address (URL) cannot contain any blank spaces.

19
Q

What is the web address formally known as?

A

Uniform Resource Locator (URL)

20
Q

In order to access a file across the web, its web address must be entered into the address field of the web browser. The web address is formally known as its “Uniform Resource Locator” (URL) and typically has three parts. What are those three parts and their definition?

A

Protocol — Any URL using the HTTP protocol begins by specifying the protocol as http:// or secure https://

Domain — The host name of the computer from which the file can be downloaded.
For instance, www.example.com

Path — The virtual path to the file on the named domain, including any parent directory names where applicable
For instance, /htdocs/index.html

A URL describing the location of a file by protocol, domain, and path is stating its “absolute address”. So the absolute address of the file described by the protocol, domain, and path components above is

http://www.example.com/htdocs/index.html