Text and Headings

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

1/13

flashcard set

Earn XP

Description and Tags

Discovering HTML and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

In HTML, the keywords of some tags are obvious, but there are some tags that use…

a shortened form.

2
New cards

Which HTML tag creates a paragraph?

<p>

3
New cards

Code a button that has the text Post.

<button>Post</button>

4
New cards

Are <p> tags regular or self-closing?

regular

5
New cards

Coding a paragraph is very similar to coding a

button.

6
New cards

For <p>, You need

an opening tag, followed by your text, and a closing tag.

7
New cards

We can create headings in HTML to emphasize certain texts. (Note Card)

Okay!

8
New cards

How many sizes of headings in HTML are there?

Six.

9
New cards

There are 6 sizes of heading in HTML, ranging from….

h1 to h6.

10
New cards

Which HTML tag(s) creates a heading?

<h1>
<h2>
<h3>
<h4>
<h5>
<h6>

11
New cards

Code a heading that displays SnapCat.

<h1>Snapcat</h1>

12
New cards

The heading tag emphasizes texts by

making them bigger and bolder.

13
New cards

h1 is

the biggest and boldest.

14
New cards

h6 is

the smallest and least bold.