What's the purpose of the <p> tag?
The <p> tag is used to define a paragraph of text.
What is HTML?
Hypertext Markup Language, a language used to create web pages.
What does the <br> tag do?
The <br> tag is used to enter line breaks.
What is the problem with this code: <p> dog <p>
Last <p> should have a slash; </p>
What is the left part of the screen in Web Lab?
the files section
What is the purpose of the <body> tag?
The <body> tag defines the main content of the HTML document that will be directly visible on your web page.
What is an HTML Tag?
The special set of characters that indicates the start and end of an HTML element and that element's type.
How do you insert a horizontal line into your web page?
<hr> tag
<h1>
What is the middle part of the screen in Web Lab?
What is the size of a heading that <h1> is used to create?
Large (the largest)
What is website structure?
How the content of a website is organized.
How would you make a heart <3 on your webpage?
<3
How can we work together to fix problems with our websites?
Pair programming
What is the left part of the screen in Web Lab?
the preview area
What is the size of a heading that <h6> is used to create?
Small (smallest)
What is website content?
The text and images on a website.
What character does the > tag create?
> (greater than sign)
What does pink code mean?
There is a bug.
What is the function of the workspace?
What is the <html> tag?
The HTML tag is the top-level element of an HTML document.
What is an HTML Element?
A piece of a website, marked by a start tag and often closed with an end tag.
What character does the & tag create?
& (ampersand)
Fix the code:
<h3>The Life Cycle of a Frog</h1>
</p>This page will explain the different life stages of a frog.</p>
<h3> should be <h1>; first <p> shouldn't have a slash /
What is the function of the files part of the screen?
It's where you can organize the different parts of the web page. You can switch between HTML and CSS.