1/19
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
The container for all of the HTML markup.
The information about the webpage.
The text to display on the browser tab.
The container for the content that'll be displayed on the webpage.
The biggest heading.
A subheading.
A paragraph.
Bold text.
Italic text.
Underlined text.
index.html
The filename for the first webpage in a website.
A single bullet in a list.
A container for a bullet-point list.
A container for a numbered list.
body {
background-color: orange;
}
Change the background colour of the page to orange.
h1 {
color: orange;
}
Change the main heading font colour to orange.
body {
width: 1000px;
margin: auto;
}
Center the entire web page.
li:hover {
background-color: orange;
}
Change the background colour of a list item to orange when the mouse cursor is over it.
p {
text-shadow: 2px 2px orange;
}
Add an orange drop-shadow to letters in a paragraph.