HTML

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

1/37

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.

38 Terms

1
New cards

<!DOCTYPE html>

begging of document

2
New cards

<html>

<head> </head>

<body> </body>

</html>

format after opening phrase

3
New cards

<h1> </h1>

largest heading

4
New cards

<h6> </h6>

smallest heading

5
New cards

<br> </br>

break in the text

6
New cards

<p> </p>

paragraph

7
New cards

<i> </i>

italicize

8
New cards

<u> </u>

underline

9
New cards

<strong> </strong>

bold

10
New cards

<a href=”LINK”>TEXT</a>

link other webpages - open in same tab

11
New cards

hypertext markup language

HTML meaning

12
New cards

anchor tag

<a> </a> is what

13
New cards

hyperlink reference

what does href stand for

14
New cards

<!-- TEXT-->

comments that don’t show on the webpage

15
New cards

an object on a page (body, image, paragraph)

what is an element

16
New cards

quality that described an element

what is an attribute

17
New cards

document type definition

what does DTD stand for

18
New cards

<!DOCTYPE html>

what is the DTD of HTML

19
New cards

phrase/inline elements

don’t break the flow of content - typically appear with block level elements and are used to style or markup small portions of text or inline content

20
New cards

<b> </b>

bold

21
New cards

<sup> </sup>

superscript

22
New cards

<sub> </sub>

subscript

23
New cards

<mark> </mark>

highlight

24
New cards

<a href=”website”target=”_blank”>TEXT</a>

open link in new tab

25
New cards

absolute link

points to a location on the web (external website)

26
New cards

nesting elements

placing one element inside of another element

27
New cards

&nbsp;

nonbreaking space code

28
New cards

relative links

linking to a local file; used to link within the same website

29
New cards

<a href=”#ID”>TEXT</a>

link within the same website code

30
New cards

<hr>

horizontal line across the webpage (horizontal rule)

31
New cards

void element

element that doesn’t have a closing tag

32
New cards

<img src=”Image Name”alt=”TEXT”>

code for image

33
New cards

source

src stand for

34
New cards

alternate text

alt stand for

35
New cards

ordered list

displays items in a numbered sequence

36
New cards

unordered list

displays items with bullet points

37
New cards

description list

used for terms and their descriptions - often used for FAQs

38
New cards

list item

<li> stand for