What four tags are required in every HTML page?
html, title, head and body
#logo
This rule applies to the single HTML element with the
_____ “logo”
id
Set the height property for all images to be 200 pixels.
height: 200px;
A horizontal rule across the page.
<hr> tag
Lets you annotate text to define how it should be displayed.
Markup Language
<style>
a {
color: blue;
}
.alert {
color: red;
font-size: 20px;
}
</style>
A______style overrides tag style in the case of a conflict
class
What is the term for the "grammatical structure" in which HTML and CSS are written?
Syntax
What is the name of the tag used to create hyperlinks?
Anchor Tag
Also called just the "a" tag.
Name one of the three "elements" in a CSS rule? E.g. h1{color: orange;}
Selector, Property, Value
This means that one element can be placed inside another element. Which allows you to apply multiple HTML tags to a single piece of content. ( or tags inside of other tags)
Nesting
CSS can be applied to a website in three ways. Name two of them.
External, Internal/Embedded, and Inline.