LESSON 1 - WEB

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/29

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:06 AM on 8/26/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

HTML5

Is the current standard version of HTML, the markup language used to structure content on web pages.

2
New cards

1.

2.

3.

4.

5.

6.

7.

Semantic Elements

3
New cards

Document structure

Refers to the standardized blueprint or skeletal framework that organizes a webpage's content.

4
New cards

1.

2.

3.

4.

What are the Document Structures?

5
New cards

This must be the very first line of the file. It tells the browser to render the page using modern HTML5 rules instead of guessing based on old, inconsistent standards. Without it, browsers can behave unpredictably.

6
New cards

This is the root element that wraps every other tag on the page.

7
New cards

This section holds information about the page rather than content people see. Things like the page title (shown in the browser tab), character encoding, and links to stylesheets or scripts all live here.

8
New cards

This holds all the visible content: headings, paragraphs, images, links, everything the visitor actually looks at. A page can only have one .

9
New cards

1. Headings (h1-h6)

2. Paragraphs


3. Line Breaks

What are the basic tags?

10
New cards

1.

2.

3.


4.

5.

6.

What are the Text Formatting Elements?

11
New cards

Displays text in bold. This is used to highlight important words or phrases so they stand out to the reader.

12
New cards

Displays text in italic. It is commonly used to emphasize a word or to show stress in meaning.

13
New cards



Defines a paragraph. It groups sentences together into a readable block of text.

14
New cards

Underlines text to highlight or emphasize certain words

15
New cards

Represents a block of quoted text. It is usually indented to visually separate it from the main content.

16
New cards



Inserts a line break, forcing the text to continue on the next line. Useful for poetry or addresses.

17
New cards

    Creates an unordered list, where items are marked with bullets. Best for general points without sequence.

    18
    New cards

      Creates an ordered list, where items are numbered or lettered. Perfect for steps or rankings.

      19
      New cards

    1. Defines each list item inside

        or
          . Every bullet or number is wrapped in
        1. .

      20
      New cards

      Creates a description list, useful for glossaries or definitions.

      21
      New cards

      Defines the term in a description list.

      22
      New cards

      Provides the description or explanation of the term.

      23
      New cards

      HREF Attribute Visit

      Is the essential heart of the anchor tag. It establishes the actual destination address of the Inked resource. Without it, the tag acts as standard unclickable infine text

      24
      New cards

      Target Attribute Visit

      The target attribute determines where the linked document

      will open. While the default opens the resource in the current browser tab, using blank forces a new window/tab.

      25
      New cards

      Absolute Path

      Complete URL address pointing to a specific online domain. Includes Protocol.

      26
      New cards

      Relative Path (Same folder)

      Locates the target page directly within the current folder structure.

      27
      New cards

      Relative Path (Up- level)

      Tells browser to climb up one folder level using prefix notation.

      28
      New cards

      Absolute Local (Avoid!)

      Paths mapping to a specific computer hard drive (e.g., C:/Users).

      29
      New cards

      1. Use Descriptive Link Texts

      2. Implement Tab Security

      3. Keep relative structure portable

      Best Practices of Hyperlink:

      30
      New cards

      1. Explain the "WHY"

      2. Stay Concise

      3. Never Store Secrets

      Three pillar of HTML Commenting: