This special declaration appears at the very top of an HTML document to tell the browser what type of document it is
<!DOCTYPE>
What is css
Cascading Style Sheets-a program language used to style an html document
A set of clearly defined, logical steps to solve a problem.
An Algorithm
This programming concept repeats a section of code multiple times to save work and avoid duplication.
Loops
What is the name of the true or false value that conditionals use
Boolean
This tag wraps everything you see on a webpage, like headings, paragraphs, and images and define the body of the document
<body> </body>
If you only want to style a single HTML element directly, you would use this type of CSS.
inline style
This is a named block of code that does a specific task and can be reused many times.
a Function
This is the process of finding and fixing mistakes in your code.
debug
this html tag creates the largest heading on a webpage
<h1>
his best practice for styling a website uses one separate file to control the design of the whole website.
external style sheet
a repetition or cycle through of something is known as
an iteration
These statements allow programs to make decisions and do different things based on if something is true or false.
Conditional Statements
This section of an HTML document includes important information like the page title, but it does not show on the main webpage itself.
<head>
In CSS, you use this type of selector (with a . in front) to apply the same style to many different elements.
class selector
This type of loop repeats until a condition is no longer true.
while loop
This is what we call a named location in memory where we can store information in a program and change it later
a variable
What does HTML stand for and what is it
Hypertext Markup Language- used for documents designed to be in a web browser