What does HTML stand for?
What is Hypertext Markup Language?
CSS stands for...
What is Cascading Style Sheets?
The base that binary is in.
The digits that binary uses.
What is 2?
What is 0 and 1.
What base is octal in? What digits are used in octal?
What is base 8? The digits are 0-7.
The location of where to put the code for an image.
What is in the body tags (<body></body>)?
Styles the webpage.
Allows variations in display for different devices and screen size
A single digit represented by 0 or 1.
What is a bit?
**Daily Double!!**
What base is hexadecimal in? What symbols are used in hexadecimal?
What is base 16? The symbols are 0-9 and A-F.
<_________ ____> and <____></____> is put at the start of your code to tell the web browser that your page uses HTML
What is <!DOCTYPE html> and <html></html>?
A declaration is terminated by...
What is a semicolon(;)?
Convert 13 in decimal to binary.
Convert 98 (in decimal) to its octal form.
What is 142?
<____> adds an image to a web page.
s_____ attribute gives the address of the image.
a__ attribute describes it to search engines and blind people.
h____ attribute sets the height of the image.
w____ attribute sets the width of the image
What is... img
src
alt
height
width?
**Daily Double!!**
_______ choose which HTML element is going to be styled
__________ decide how the element is going to change
What is selectors?
What is declarations?
Convert 57 in decimal to binary.
What is 0111001?
Convert 251 (in decimal) to its hexadecimal form.
What is FB?
Link an HTML file to a CSS file.
<____> is used to link an HTML document to a CSS stylesheets
___ attribute sets the type of link (hint: starts with "r")
____ attribute sets the address of the file to link to (hint: starts with "h")
What is <link>?
What is rel?
What is href?
<?> creates a link to another webpage
____ attribute gives the address of the webpage (hint: it starts with "h")
______ attribute is set to "_blank" to show the linked page in a new tab when the user clicks it (hint: it starts with "t")
What is <a>?
What is href?
What is target?
Convert 100010 in binary to its decimal form.
What is 34?
*Challenge*: Convert 56 (in octal) to its form in binary.
What is 101110?