HTML
Fixing Code
Headers
Paragraph
CSS
100

Where is the inspector tool found?

 On the bar above the code on the right-hand side.

100

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.

100

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.

100

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.

100

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. 

200

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.

200


What is debugging?


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.

200

What is the most giant header tag?

<h1>...</h1>

200

The _______ tags or "paragraph" start and end tags are placed around text to indicate that it is part of a paragraph.

<p> </p>  

200

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.

300

 When you add content to your projects, you'll need to do it between the____ tags

<body> and </body>

300

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.

300

what is the smallest header tag

<h6>...</h6>

300

 What is the purpose of the p2 tag?

To make different paragraphs look different.

300

what does CSS stand for?

Cascading Style Sheet




400

The _______ tags start and end tags are placed around text to indicate that it is part of a link.

<a> </a>  

400

What is pair review

 When someone looks over your code and tries to find bugs to help you.

400

what header is used for sub-headers

<h3>...</h3>

400

 True or false: Is there no such a thing as the p3 tag?

false

400

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.

500

What does the inspector tool used for?

 The inspector tool is used to locate code better and use with large web pages.

500

What is a bug?


Bugs are mistakes in code that causes it not to work as planned.





500

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.

500

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

500

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.

M
e
n
u