HTML notes

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

1/15

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.

16 Terms

1
New cards

HTML

Hyper Text Markup Language

2
New cards

Document type declaration

<!DOCTYPE> <!DOCTYPE html>

3
New cards

HTML tag

<html>…</html>/<html lang=”eng”>

4
New cards

Head tag

Contains metadata that provides information about website 

<head>…</head>

5
New cards

Title tag

<title>…</title>

6
New cards

Body tag

Contains all the documents the user can see 

<body>…</body>

7
New cards

Paragraph tag

<p>…</p>

8
New cards

Break tag

Moves to the next line <br>

9
New cards

Horizontal rule tag

Creates a horizontal line to separate webpage content

<hr>

10
New cards

Heading tags

<h1>…<h6>

11
New cards

Strong tag

Changes the text to bold font style

<strong>…</strong>

12
New cards

Emphasis tag

Changes the text to italic font style

<em>…</em>

13
New cards

Comment tag

Contents of tag are not displayed on the web page

<!—…—>

14
New cards

Image tag

Adds image between 100kb and 200kb to website (J.PEG, .PNG, .RAW, and TIFF have best quality)

<img src='“x.jpg”alt=”picturex”>

15
New cards

Link tag

Links an HTML document to an external style sheet

<link ref=”stylesheet”href”css file name with file extension”>

16
New cards