Pieces of code that gives structure to an HTML page
What is HTML tags?
Based on RGB values. Determines the hue of an element.
What is color?
What are the two main instructors names? :)
Juliet and Leo!
font-size:20px
What is sets the font size to 20?
A language used to format the layout of web pages. (e.g. text styles, table sizes, or website layout)
What is CSS
Information added to code to ease readability. May explain or label parts of code. The computer ignores these sections.
What are comments?
Controls how big the words are.
What is font-size?
<style>
h3 {
??
}
</style>
(What type of language would go where the ?? is)
What is CSS?
h1 {
font-family: "Arial";
}
What is sets the first header font to Arial?
Includes the styling rules that dictates how your web page or entire web site will look.
What is a style sheet?
<ul>
What is the tag that creates an unordered list?
Defines how curved (if at all) an element's corners will be.
What is Border-Radius?
/* example code */
What is CSS comment?
The language that computers use to store and interpret data.
What is binary?
This element contains the title and meta data of your web document.
What is the <head> tag?
Separates elements from each other.
What is padding?
The <style> belongs in this section.
What is <head>?
border-radius: 25px;
What is rounds the edges?
How the computer quantifies color by specifying the intensities of red, green, and blue from 1-255 each.
What is the RGB Color Model?
The information that describes a coding/scripting language to its users. Helps you with built-in functionality of a coding language.
What is documentation?
Determines the font style (ex: Comic sans, Papyrus, Times New Roman, Arial)
What is Font-family?
The difference between padding and margin
What is padding controls how much extra space is within the element and margin adds extra space around an element.
Sets the words "example text" to be colored red. (write the code)
What is <p style=color:red>example text </p>?
or
<style>
p {
color:red;
}
</style>
<body>
<p> example text </p>
</body>
A way of implementing CSS directly into your HTML code within the starting tag.
What is inline CSS?