Where is the inspector tool found?
On the bar above the code on the right-hand side.
Why does the code sometimes turn pink?
Web Lab is programmed to automatically detect some mistakes in HTML. When it notices a mistake, it turns that code pink. The mistake might be in pink, or it might be somewhere before the pink code. You'll need to carefully debug to find your mistake.
What are headings?
Headings are the different-sized section titles throughout a web page. Headings add structure to your web page by breaking it up so it's easier for a user to read.
What is a paragraph element?
Paragraphs are marked by opening(<p>) and closing(</p>) tags as well. Paragraphs in HTML can be any length of text from one word to a bunch of sentences. All of the text on your web page should be contained in an HTML element (headings or paragraphs). Paragraphs group together sets of sentences and put some space between that group of text and the next group of text.
What colors can I use in CSS?
CSS includes most common color names (red, blue, green, etc.), and many uncommon ones. You can still use colors that are not included in the named list, but you will need to use their RGB values.
When you start any Web Lab project, it will automatically add what tags
When you start any Web Lab project, it will automatically add <!DOCTYPE>, <html>, <head>, and <body> tags to your project.
Debugging is the process of finding and fixing bugs. Debugging is a problem-solving process so use your problem-solving steps as you try to debug.
What is the most giant header tag?
<h1>...</h1>
The _______ tags or "paragraph" start and end tags are placed around text to indicate that it is part of a paragraph.
<p> </p>
What is CSS?
CSS is a language that controls the way content on a website appears. It uses rule sets to change the look of a page. Each rule set has a selector, which specifies which elements on the page will be affected, and the rules, which explain how to display the elements. Each rule consists of a property and a value for that property.
When you add content to your projects, you'll need to do it between the____ tags
<body> and </body>
What are some examples of bugs?
Bugs can be anything that causes code not to work as planned. Some examples are misspelling, putting code in the wrong place, using the wrong tag, or forgetting to close a tag.
what is the smallest header tag
<h6>...</h6>
What is the purpose of the p2 tag?
To make different paragraphs look different.
what does CSS stand for?
The _______ tags start and end tags are placed around text to indicate that it is part of a link.
<a> </a>
What is pair review
When someone looks over your code and tries to find bugs to help you.
what header is used for sub-headers
<h3>...</h3>
True or false: Is there no such a thing as the p3 tag?
false
How is CSS different from HTML?
HTML is a markup language used to create static web pages and web applications. CSS is a style sheet language responsible for the presentation of documents written in a markup language.
What does the inspector tool used for?
The inspector tool is used to locate code better and use with large web pages.
What is a bug?
Bugs are mistakes in code that causes it not to work as planned.
How do I make different-sized headings?
Headings come in 6 different sizes. The most common heading is <h1>. You can also try the <h2>, <h3>, <h4>, <h5>,and <h6> tags.
How do I create multiple paragraphs?
Paragraphs are marked by opening (<p>) and closing (</p>) tags as well. To create more than one paragraph you will want multiple sets of opening and closing <p> tags. For example
What is a style sheet?
A style sheet is a document that controls how a web page will appear. External style sheets are separate files that are linked to the HTML page.