What tag creates a paragraph?
<p>
What does CSS stand for?
Cascading Style Sheet
<img href="picture.jpg" width=100>
href should be src
What does HTML stand for?
HyperText Markup Language
I want to make a picture bigger. What 2 attributes can I use on the <img> tag?
Width and Height
How many heading tags are there? Which is the smallest and which is the largest?
6 headings, h1 = largest and h6 = smallest
What property can I use to change the text in my paragraph from black to red in my CSS file?
color: "red";
<a src= www.google.com> This is a link to google. </a>
No quotes around the link
should be href not src
These types of images or links are stored within the folder of your website.
LOCAL images/links
What is the attribute used in <img> to link an image.
src="..."
What can I use to add an element to my unordered or ordered list?
<li> ... </li>
What CSS property allows me to center text on my webpage?
(not <center></center>)
text-align: center;
<body style="background-color: blue, font-family: Verdana">
Style attributes are separated by a ; not a ,
What does it mean for a website to be "accessible" and what is one way to make a website accessible?
Users with wide range of needs, conditions or disabilities can use your website.
Ways:
- Bigger text/pictures
- Picture Alts (for screen readers)
- Colorblind mode, night mode, dark mode, etc.
What attribute can I use for an image/video to give users with a screen reader the ability to know what your page is displaying?
alt="..."
What do we use the <link> tag.
To link a stylesheet (CSS) to our html file.
I have an <h1> using internal styling to make it red (style="color: red;")
If my CSS file says
h1 {
color: pink;
} Will my heading be red or pink?
<?DOCTYPE html>
Also, what is the corrected line used for?
<!DOCTYPE html>
Used to signify that the browser is opening an HTML5 document
The browser needs to find the ___________ of the URL that you search before being able to read and display it's HTML code.
IP Address
I have a green background on my website but want my large heading to have a white background behind it. What attribute can I use for this and where?
<h1 style="background-color=white;">
Inside of the corresponding h1 tag
How can you tell the difference between a starting and closing tag? Which tag does not need to be closed?
starting: <...>
closing: </...>
<br> does not need to be closed.
What the difference between styling an <ol> or <ul> vs styling an <li>?
<ol> and <ul> styling is only for the bullets/numbers of the list
<li> styles the element that is inside of the bullet/number.
p {
background-color: yellow
color: blue
font: Verdana
}
Missing semi-colons
Font-family
Give the tags of HTML boilerplate code in order (including DOCTYPE).
<Doctype>
<html>
<head></head>
<body></body>
</html>
What attribute do I use if I want to change the background color of my webpage and in which tag would I put it?
<body style="background-color=pink;">