1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
h1, h2, h3, h4
main heading, the smaller headings can be used as subheadings
<div>
a division, and it divides the page into different sections
<p>
Paragraph, they have a block of just plain text
<span>
Contains pieces of text / other HTML. Used to separate small pieces of content that are on the same line.
<em>
Gives the text a italic emphasis
<strong>
Gives the text a bold emphasis
<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
<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.
<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
<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.