HTML & CSS

0.0(0)
studied byStudied by 1 person
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

<html>

The container for all of the HTML markup.

2
New cards

<head>

The information about the webpage.

3
New cards

<title>

The text to display on the browser tab.

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

<body>

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

<h1>

The biggest heading.

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

<h2>

A subheading.

7
New cards

<p>

A paragraph.

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

<b>

Bold text.

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

<i>

Italic text.

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

<u>

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

<li>

A single bullet in a list.

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

<ul>

A container for a bullet-point list.

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

<ol>

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.