Web Dev: Lesson 4 - Hyperlinks

Web Dev: Lesson 4 - Hyperlinks

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

When the href value uses the # symbol, the browser will look for a location within the ________________ document.

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (19)

Section 1

(19 cards)

When the href value uses the # symbol, the browser will look for a location within the ________________ document.

Front

current

Back

What does the browser do with a hyperlink as ...... ../mysite/index.html

Front

The initial two periods and forward slash ( ../ ) instruct the browser to look for a directory named mysite that begins one level higher than the page you are currently viewing.

Back

To create an internal link, you must also create the link that points to the bookmark using the anchor element with the ___________________________________ attribute.

Front

hypertext reference

Back

<rowspan>

Front

Attribute that identifies the number of table rows a single cell can occupy.

Back

<table>

Front

Required element to create a table, and contains all other table elements.

Back

<padding>

Front

Property used to manipulate the amount of space between cell content and the cell's inner border.

Back

<td>

Front

required element that encloses table cell contents; not required when a similar redundant element is present.

Back

Link Rot

Front

The phenomenon in which hyperlinks on a Web site gradually become invalid as referenced Web page content, links and page locations change.

Back

What does the browser do with a hyperlink as ...... mysite/index.html

Front

The absence of any initial characters instructs the browser to look for the mysite subdirectory. This subdirectory begins off of the same level as the current page. The index.html page resides inside of the mysite subdirectory.

Back

To create an internal link, you must first use the anchor tag with the _____ attribute to define an area as a target.

Front

id

Back

The # symbol used with the href value is called a(n) ___________.

Front

hash

Back

<th>

Front

Optional element that designates the top row or left column. By default, text will appear bold and centered.

Back

<border-spacing>

Front

Property used to manipulate the amount of space between borders of adjacent table cells.

Back

<caption>

Front

Optional element often used to add a title above or below a table.

Back

When the href value omits the # symbol, the browser will look for a location within an __________________ document.

Front

external

Back

<colspan>

Front

Attribute that identifies the number of table columns a single cell can occupy.

Back

An internal link requires an internal bookmark, called a(n)__________, to identify the point that the link will reference within the page.

Front

anchor

Back

What does the browser do with a hyperlink as ...... /mysite/index.html

Front

The initial forward slash ( / ) instructs the browser to look for a directory named mysite that is off of the root directory. If you were to insert this reference into a page on your Windows system, your browser would interpret the first forward slash as C:\, and would look for the mysite/ directory, which would contain the index.html file. If this page were on a Web server, the link would refer to the Web server's root directory (e.g., /var/www/mysite/ in Linux/UNIX or C:\inetpub\wwwroot\ in Windows).

Back

<tr>

Front

Required element that contains all data for a table row.

Back