Fundamentals of HTML

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/28

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.

29 Terms

1
New cards

HTML stands for

Hyper text markup language

2
New cards

An visible content

< body> </body>

3
New cards

Biggest heading

< h1 ></h1>

4
New cards

Smallest heading

< h6></h6>

5
New cards

Paragraph

<p> </p>

6
New cards

Split up code

<div> </div>

7
New cards

Italic

< em > </em>

8
New cards

Bold

< strong > </strong>

9
New cards

Breaks

< br >

10
New cards

Numbered list

< ol > </ol>

11
New cards

Bullet list

< u l> </ul>

12
New cards

Images

< img src '‘ “ />

13
New cards

Videos

< video src =“ “> </video>

14
New cards

Let’s the browser know what to expect

<!DOCTYPE html>

15
New cards

Can hold the title and info

<head> </head>

16
New cards

Appears in a browser tab

<title> </title>

17
New cards

Used to link to other pages

<a> </a>

18
New cards

Help get to elements

<div id =“”>

19
New cards

Comment

<!— —>

20
New cards

All code must be between what tags

<html> </html>

21
New cards

New tab or window

<a href = “” target =“_blank”> </a>

22
New cards

Used for any kind of list

<li> </li>

23
New cards

Everything in a table must be in

<table> </table>

24
New cards

Add a row

<tr> </tr>

25
New cards

Add data to a row

<td> </td>

26
New cards

Table heading

<th> </th>

27
New cards

Spam columns

<td colspan=“”>

28
New cards

Spam rows

<td rowspan=“”>

29
New cards

Tables can be split into 3 groups

<thead> <tbody> <tfoot> with closing tags