Terms You Need to Know

Below, I'll go over the terms you'll commonly see in coding, sometimes only listing the way it translates into code. First, what does HTML stand for? HyperText Markup Language. And CSS? That’s for Cascading StyleSheets. Here are some basic terms/elements of coding you should keep in mind:

CSS: CSS can be either on a separate page, or inline. For the sake of organization, I recommend you keep it separate. CSS takes HTML elements and assigns attributes to them. For example, if you want to make all your paragraphs red, you write:
p {
Color: red
}

You write the element (or the selector), a space, a bracket, go to the next line and indicate the change (to font, color, background, etc) and end it with a semicolon, go down another line and close it with a closing bracket. Everything within those two brackets is considered a declaration. You can use paragraph, div, id, class, and h1-h6 as selectors. When using CSS as a separate document, you need to link the two. To do this, go to the head tag and type just after the closing bracket for title <link href=”filename.css” type:”text/css” rel=”stylesheet” />