What does the p in <p> stand for?
Paragraph
What does <ul> stand for?
unordered list
How do you make all the <p> elements on a page red?
p {
color: red;
}
a forward slash like this </p>
What kind of list will show bullet points?
An unordered list, an ordered list would show a numbered list.
What should the type always be when linking to a CSS stylesheet?
type should always ='text/css'
ex)
link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500,100' rel='stylesheet' type='text/css'>
What does the h in <h1> stand for?
Heading
True or False, ids are always in quotes. ex) <h1 id="A1">Hello World</h1>
True
Can you define in-line styling?
Its styling that goes right into the HTML like so:
<p style="color: red; font-size: 20px;">I'm learning to code!</p>
How many heading tags are there in HTML?
Six
What does <br> stand for and what does it do?
Break. The <br> line break element will create a line break in text and is especially useful where a division of text is required, like in a postal address. The line break element requires only an opening tag and must not have a closing tag.
What does an ID look like in CSS?
.brand {
}
What does src mean in <img src="path/to/image" alt="text describing image" /> ?
Source
How do you make a word bold?
<strong>Hello!</strong>
Put these in order of uniqueness. IDs, Tags, Classes.
IDs
Classes
Tags