What tags do you use to make a paragraph or paragraphs?
<p>----</p>
What is the tag you use to add a image to your webpage?
<img>
allows you to show the image on your webpage.
How do I switch between files?
Click the name of the file you want to look at in the menu on the left side of the screen.
How do you know you have a Bug in your webpage?
The </body> and </HTLM>
on the bottom of the page will turn pink
What does the border-style property do?
property determines what kind of border the element has.
What tool do you use to explore the web page?
Inspector Tool
How do you add images to the webpage workspace?
click "add image" and upload the image from your computer into your project
What does px mean / What is a pixel?
Pixel (px), is how elements are measured in CSS. It’s the size of a single point of light on the screen.
What does the color property do?
Specifies the color of the text. If there’s no text, it won’t do anything.
What does the body selector do?
The body selector gives style rules for everything on the web page.
what tags do you use to add content to your projects?
<body>---</body>
Why do you not have to close the image tag?
There is no text content which would be wrapped in tags.
What is a style sheet?
A style sheet is a document that controls how a web page will appear.
What will happen if element inside the page has a different background color from the body?
The paragraphs will have the background color in the rule for the p tag, and the rest of the page will follow the rule for the body tag.
What does the border-radius property do?
Determines the radius of the curves at the corners of the element.
What are the three main parts of the Web Lab?
Files
Workspace
Preview
How do you change the size of an image?
Go to your Css
img}
size: 25px;
}
What does CSS stand for?
Cascading Style Sheets
What are hyperlinks?
connect to local web pages or external web pages
What does the float property do?
The elements that come after the "float" tage will be allowed to flow around it.
Why does HTML seem to work even when it's broken?
Browsers are programmed to make a best guess of what you intended to do
What is an attribute?
Attributes are extra information included in a tag with names and values.
How do you link a style sheet to a web page?
Inside the head tag, add the following code
<link rel="stylesheet" href="style.css">. Then change "style.css" to the name of your style sheet.
Why would a web developer use classes?
when some elements should be styled differently than others, even if they are the same tag
What does the background-color property do?
Property determines the color of the background of an element