1/13
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
In HTML, the keywords of some tags are obvious, but there are some tags that use…
a shortened form.
Which HTML tag creates a paragraph?
<p>
Code a button that has the text Post
.
<button>Post</button>
Are <p> tags regular or self-closing?
regular
Coding a paragraph is very similar to coding a
button.
For <p>, You need
an opening tag, followed by your text, and a closing tag.
We can create headings in HTML to emphasize certain texts. (Note Card)
Okay!
How many sizes of headings in HTML are there?
Six.
There are 6 sizes of heading in HTML, ranging from….
h1 to h6.
Which HTML tag(s) creates a heading?
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
Code a heading that displays SnapCat.
<h1>Snapcat</h1>
The heading tag emphasizes texts by
making them bigger and bolder.
h1 is
the biggest and boldest.
h6 is
the smallest and least bold.