HTML Lecture Review

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/23

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key HTML concepts, tags, and best practices from the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

HTML files

Must be plain text files.

2
New cards

Relative path

A file path that can be just a file name if the referenced file is in the same folder as the page that links to it.

3
New cards

Singleton tags

HTML tags that do not require a closing tag, such as


and
.

4
New cards

Web page layout

Depends on the tags used, not on the layout of the source file.

5
New cards

Absolute pathname (for hyperlinks)

Required for hyperlinks to pages on another Web site.

6
New cards

Relative pathname (for hyperlinks)

May be used for onsite links (links within the same website).

7
New cards

Basic Web page structure

Composed of a head and a body.

8
New cards

Properly nested HTML

Tags are opened and closed in the correct order (e.g.,

Happy New Year!

).

9
New cards

Required basic HTML tags

, , .
10
New cards
tag attributes

src (specifies the image file source) and alt (provides alternative text for the image).

11
New cards

Anchor tags

12
New cards

Path to image in subfolder

Specified as subfolder_name/image_name.jpg (e.g., images/roses.jpg).

13
New cards

HTML tags syntax

Enclosed in angle brackets, < and >.

14
New cards

Used to specify the text that appears on the title bar of the browser.

15
New cards

tag

The preferred way to specify a break that continues the text on the next line in a Web page.

16
New cards

tag

The tag for the heading that is the largest and the darkest.

17
New cards
tags

Inserting these tags into an HTML page has no effect on the display of the page by themselves (without additional styling).

18
New cards

'id' attribute

Provides a unique 'handle' on an HTML input element so the web developer can manipulate the element individually.

19
New cards

HTML tags that create drop-down menus.

20
New cards

Absolute path (in a link)

A link that contains the full URL, like http://www.coffeecup.com.

21
New cards

Image aspect ratio

Should be preserved by specifying both the height and width in an <img> tag.

22
New cards
    tag

Creates a bulleted (unordered) list of items.

23
New cards
tags

All text and images that are to be displayed in the browser window should be placed between these tags.

24
New cards
    (ordered list)

Requires a closing tag to be properly structured.