This tool's job is to transform the code in test.html into a recognizable webpage
What is A BROWSER
100
The special symbol <> used in HTML code is called
What is TAGS
100
What does the tag (!DOCTYPE html) indicate?
What is A HTML FILE
100
What does 'Hypertext' means?
What is "text with links in it."
100
Any time you click on a word that brings you to a new webpage, you've clicked on a ...
What is HYPERTEXT
200
A browser knows how to lay out the page by following a special rules for communicating called
What is HTML syntax
200
This programming language serves as the skin and makeup that covers the bones of HTML.
What is CSS—Cascading Style Sheets
200
These symbols always come in pairs, which indicate an opening and a closing of the HTML code
What are Tags
200
This tag includes important information about the webpage, such as its title.
What is (head)(/head)
200
This tag goes inside the html tags, but not inside the head tags, and it displays the content on the actual page.
What is (body)(body)
300
What does HTML stands for?
What is HyperText Markup Language.
300
This tag always goes on the first line of the HTML file.
What is (!DOCTYPE html)
300
Everything in an HTML file will go between these
What are the opening (html) and closing (/html) tags.
300
HTML actually lets us have more than one heading size.
How many heading sizes does it offer?
What is 6
300
Little notes included in HTML code that the browser does not display help you remember why you did certain things. What is this called and what is the symbol for it?
What is comment
Comments start with (!-- and end with --) like this:
(!-- This is an example of a comment! --)
400
This programming language used to make text do more than just sit on a page: it can turn text into images, links, tables, lists, and much more. HTML is considered a family of this language.
What is A MARKUP LANGUAGE
400
This tag starts and ends the HTML document.
What is (html)
400
If the six heading sizes constitute a company, which heading size would fit the following descriptions:
- Middle management
- The CEO
- Lowly assistant
- VP
- Gets coffee for everyone
- Director
What is
(h1) - The CEO
(h2) - VP
(h3) - Director
(h4) - Middle management
(h5) - Lowly assistant
(h6) - Gets coffee for everyone
What does href and src stand for?
What is the text after href?
What is the between (a) and (/a)?
What is "hypertext reference" and source
What is the the web address
What is the text you click on
500
1. What makes webpages pretty?
2. This tag is the one used to make hyperlinks (or just links) on webpages. These are the words or images you click to go to a new page!
What is CSS
What is (a) tag
500
How do you make an ordered list?
What is begin the ordered list with the opening tag (ol), then wrap each individual item with (li) and (/li) tags. Then finish the ordered list with the closing tag (/ol).
500
This tag is a bit different from the others. Instead of putting the content between the tags, you tell the tag where to get the content using a code. It's also different because there is no ending tag. It has / in the tag to close it
What is the image tag (img src="url" /).
500
How do you make an unordered list inside an order list?
What is: (ol)/ (li) and (ul)/(li) nested inside. Close everything.
500
If img tag (img) uses src that tells the link where the picture comes from, what attribute does a tag (a) use to tell the link where to go?