What are hyperlinks
Hyperlinks can connect to local web pages or external web pages. To add navigation to your website you will need to add hyperlinks which connect your individual web pages. You can add hyperlinks to your web page using the <a> element. The text you want to display as the hyperlink goes between the opening and closing hyperlink tags. The <a> element has an attribute href which is the location to link to. The location of a local page is just the file path for that page.
How do I add images?
The <img> tag allows you to show images on your web page.
what is the correct coding part to create paragraphs.
<p>
What does opacity do
Fades the images
How do I add hyperlinks
You can add hyperlinks to your web page using the <a> element. The text you want to display as the hyperlink goes between the opening and closing hyperlink tags. The <a> element has an attribute href which is the location to link to. The location of a local page is just the file path for that page.
Why does an image tag not have a closing tag?
An image tag doesn't need a closing tag because there is no text content which must be wrapped in tags. The content that shows on the screen is specified through the tags attributes.
what is the part of code that encases all of the writing portion of the coding file.
<body> tag
What is CSS?
CSS is a language that controls the way content on a web site appears.
Why would a web developer use CSS classes?
A web developer uses classes when some elements should be styled differently than others, even if they are the same tag. Classes can also be used to give elements that have different tags the same style.
What is an attribute?
Attributes are extra information included in a tag. Attributes have names and values. The name tells what type of information is being provided and then the value gives the specific information for that tag.
what is the first part of every html file.
What is a <!DOCTYPE html>part of the code?
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.
Why Is computing important to us
Teaches us the basics of a computer
In CSS classes Why does the selector have a period in front of it?
In CSS, a period in front of a selector means that the selector is the name of a class. If there is no period, it means that the selector is the name of an HTML tag.
What page Can spice up your images
CSS
what is the code part that is used to create bullet points.
What is the <li>
What colors can you use on css
Any color using RGB
In CSS classes How does the code work?
For the code to work, you need a class, a rule-set, and elements added to the class.
Name one thing you can spice up your image
Borders, Opacity, Image width/height
What code centers an image
what is <center>
What does px mean / What is a pixel?
Pixel, which is abbreviated px, is how elements are measured in CSS. It’s the size of a single point of light on the screen.