HTML tags

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

1/9

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.

10 Terms

1
New cards

h1, h2, h3, h4

main heading, the smaller headings can be used as subheadings

2
New cards

<div>

a division, and it divides the page into different sections

3
New cards

<p>

Paragraph, they have a block of just plain text

4
New cards

<span>

Contains pieces of text / other HTML. Used to separate small pieces of content that are on the same line.

5
New cards

<em>

Gives the text a italic emphasis

6
New cards

<strong>

Gives the text a bold emphasis

7
New cards

<br>

Means a line break, but if you use a </br> at the end of it, it would be invalid because it itself is a self-closing tag, meaning it doesn’t require it in the first place

8
New cards

<ul>

A unordered list tag, that creates a list of items in no order. You should use li when listing out the items though, to create those list of items. They contain bullet points.

9
New cards

<ol>

Ordered List tag, they create a list of numbers based on which was typed first and put it in order, it is listed by numbers like 1, 2, 3, and so on. You can use <li> to list those items aswell

10
New cards

<img>

A tag that allows you to add an image from a webpage/link. It is a self closing tag aswell, so it doesn’t need a </img>.

It has a required attribute called src which means source.