HTML & CSS

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/19

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

The container for all of the HTML markup.

2
New cards

The information about the webpage.

3
New cards

The text to display on the browser tab.

<p>The text to display on the browser tab.</p>
4
New cards

The container for the content that'll be displayed on the webpage.

<p>The container for the content that'll be displayed on the webpage.</p>
5
New cards

The biggest heading.

<p>The biggest heading.</p>
6
New cards

A subheading.

7
New cards

A paragraph.

<p>A paragraph.</p>
8
New cards

Bold text.

<p>Bold text.</p>
9
New cards

Italic text.

<p>Italic text.</p>
10
New cards

Underlined text.

<p>Underlined text.</p>
11
New cards

Hyperlinked text.

<p>Hyperlinked text.</p>
12
New cards

index.html

The filename for the first webpage in a website.

13
New cards

  • A single bullet in a list.

    <p>A single bullet in a list.</p>
    14
    New cards

      A container for a bullet-point list.

      <p>A container for a bullet-point list.</p>
      15
      New cards

        A container for a numbered list.

        <p>A container for a numbered list.</p>
        16
        New cards

        body {

        background-color: orange;

        }

        Change the background colour of the page to orange.

        17
        New cards

        h1 {

        color: orange;

        }

        Change the main heading font colour to orange.

        18
        New cards

        body {

        width: 1000px;

        margin: auto;

        }

        Center the entire web page.

        19
        New cards

        li:hover {

        background-color: orange;

        }

        Change the background colour of a list item to orange when the mouse cursor is over it.

        20
        New cards

        p {

        text-shadow: 2px 2px orange;

        }

        Add an orange drop-shadow to letters in a paragraph.