What does the / do in tags?
It closes the tag!
Why are we learning HTML?
So we can make our own websites!
How would I bold text?
<strong> and </strong>!
What does <meta> do?
Tells the browser more details, like what character sets you're using!
Why do we spell 'source' as src in HTML?
Because HTML won't recognise 'source'!
How would I italicize text?
<em> and </em>!
What is the difference between <ul> and <ol>?
Why do we need to close tags?
So the browser knows then to stop applying a tag to text!
How would I make a list?
<ul> and </ul> OR <ol> and </ol>!
What do the numbers in the heading tags do? (<h1>, <h2>, <h3>, etc...)
It decides how big or important the heading is!
Why do we want to change the height OR the width of an image and not both at the same time?
It will squish the image!
How would I give an image alt text?
alt="text here" inside of the image tag!
What do the letters in the <ol> and </ol> tags stand for?
Ordered List!
Why do we always want to make sure our images have alt text?
So people using screen readers can understand what the images are showing!
How would I change the width of an image?
width="value" inside the image tag!