How you end a line of code in the CSS
What is a semi colon?
How to get text to appear on the webpage
What is <body>…</body>
How to start a new paragraph and separate text in an HTML document
What is <p>…</p>
How to create a break in the text
What is <br>
How you tell the computer what you want your CSS command to affect.
What is the selected part {}
(ex.: h1{})
How you always start an HTML document.
What is <!DOCTYPE html>
The largest header tag
What is <h1>
How to create a thematic break in the text
What is <hr>
How to add an image to an HTML page
What is <img src="image name">
How you change the size of the text in the CSS.
What is font-size: px
The second thing you start an HTML page with
What is <html>
How you start a list
What is <ul>
How to create a footer in an HTML page
What is <footer>…</footer>
How to make sure the image has a label pop up if the image isn't working
What is <img src="image name" alt="label">
What CSS stands for.
What is Cascading Style Sheets?
The third thing you always start an HTML page with
What is <head>
How to make bullets after you start a list
What is <li>
How to center text in the HTML page
What is <center>…</center>
What is <a href="website name"><img src="image name" alt="label"></a>
How you centre text on a CSS page.
What is text-align: center;
Adds an ampersand on the webpage.
What is &
The smallest header tag
What is <h6>
How to make a list numbered after you started it
What is <ol>
How to change image size in CSS
What is
img{
width: px;
height: px;
}