The synonym for Cascading Style Sheets
What is CSS?
The biggest header tag?
What is <h1>?
The HTML tag is used to create an unordered list?
What is <ul>?
The main HTML tag used to define a table?
What is <table>?
The HTML tag is used to create a hyperlink?
What is <a>?
The CSS property is used to change the text color of an element?
What is Color?
The tags where CSS link go semantically
The HTML tag is used to create an ordered list?
What is <ol>?
The HTML tag is used to define a row in a table?
What is <tr>?
The attribute is used to specify the URL of a link?
What is href?
The CSS property that changes the size of the text in an element.
What is font-size?
The purpose of the 'alt' attribute in the '<img>' tag?
What is providing alternative text for an image if it cannot be displayed?
The tag for bullets themselves
The HTML tag is used to define a data cell in a table?
What is <td>?
The link is used to link the CSS to the HTML
What is <link rel="stylesheet" href="example.css">?
One way to define a color in CSS
What are; Color name (like "red"), a Hexadecimal value (like "#FF0000"), or an RGB value (like "rgb(255, 0, 0)
The tags would you use when you are trying to add CSS properties into the html via inline code
What are <style> and </style> tags?
The line of code to have an image instead of a bullet?
What is "background: url(example.png)"?
The tag makes the words bold inside the table?
What is <th>?
The name of the CSS display value that arranges elements in a single row or column, distributing space among them.
What is flex (or display: flex) ?
Basic HTML starting structure
What is <!DOCTYPE html>?
The purpose of "list-style-type: none;"
What is allowing you remove the bullets or numbers from a list?
The purpose of the <tbody> element in an HTML table.
What is containing the main table data and helping structure the table semantically?
Browser indicators that a piece of text or an image is a hard link
What are Underlining, Color change, or outlining?