HTML Coding

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

1/25

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.

26 Terms

1
New cards

Meaning of HTML

“Hyper Text Markup Language”

2
New cards

File Extension of HTML

.html or .htm

3
New cards

What is HTML?

It's a backbone or skeleton of a website

4
New cards

What are texts called in HTML?

Elements

5
New cards

What is special code called in HTML?

Tags

6
New cards

Is HTML case sensitive?

No

7
New cards

Tags have what character?

Arrows or “<>”

8
New cards

What character does the ending tag use?

Forward-slash or ”</Tag>

9
New cards

What are Nesting Tags?

“Tags must be inside tags; Tags should not overlap with other tags”

10
New cards

What do Web Browsers do?

They search and retrieve HTML files

11
New cards

What are some notable HTML Editors

Notepad, Notepad++, Adobe Dreamweaver

12
New cards

<!DOCTYPE> or <!DOCTYPE html>

Used to identify the HTML version and the tags to use

13
New cards

<HTML></HTML>

A Tag used so that text inside it HTML code

14
New cards

Recent HTML version

HTML 5.0

15
New cards

<Head></Head>

Used as a container for metadata

16
New cards

<Title></Title>

Used to add a title in the tab

17
New cards

<Body></Body>

Used to see everything on a website; Front end

18
New cards

<p></p>

Used to contain a paragraph or Element

19
New cards

Where to put <!DOCTYPE> tag?

At the very top; beginning

20
New cards

<b></b>

Used to bold Elements inside

21
New cards

<i><\i>

Used to italicize elements inside

22
New cards

Where to put <HTML> tags?

Right after <!DOCTYPE> Tag

23
New cards

Where to put <Head> Tag?

Right after <html> Tag

24
New cards

Where to put <Body> Tag?

After or inside the <Head> Tag

25
New cards

<h1-6></h1-6>

Used to create a header and the size can change from big to small

26
New cards