HTML dictates this part of a webpage
What is structure?
CSS dictates this part of a webpage
What is style/appearance?
The standard tag for text
What is <p>?
This property changes the color of text
What is color?
This color model splits colors into three values, often used for computers
What is RGB?
This section of the webpage has the metadata, the information we don't see
What is the head?
The full name of CSS
What is Cascading Style Sheets?
This tells the browser that the file is an HTML document
What is <!DOCTYPE html>?
The font-size property can be set in these two ways
What are % and px?
This number system consists of 16 digits and can be used as a 6-digit color code
What is hexadecimal?
(Almost) every tag needs this at the end
What is a closing tag?
CSS replaces and expands on this HTML attribute
What is style?
The tag for links (external or within project)
What is <a>?
This property decides where to place text on a page
What is text-align?
Color represented by #000000 or rgb(0, 0, 0)
What is black?
This part of your webpage tells the browser what the page is called
What is the title?
The required punctuation after a selector
What are curly brackets {}?
This tag is used to embed a video or other webpage into your page
What is <iframe>?
Property for deciding text font
What is font-family?
HTML has these two types of lists, represented by <ul> and <ol>
What are unordered lists and ordered lists?
The full name of HTML
What is HyperText Markup Language?
CSS selectors come in these three types
What are tag, class, and ID?
Creating a table requires these four tags
What are <table>, <tr>, <th>, and <td>?
These three properties affect the border of elements
What are border-style, border-size, and border-color?
CSS uses no punctuation for a tag selector, . for a class selector, and this for an ID selector
What is a hashtag/number sign/#?