What does CSS mean?
What is Cascading Style sheet?
What does HTML stand for?
What is Hypertext Markup Language.
What is the <p></p> tag used for?
What are Paragraphs.
What is the code for internal hyperlinks?
What is<a href="index.html">Home</a>
Body tag definition?
What is The main content of the HTML document that will be directly visible on your web page.
What symbol do you use to close out the CSS code?
What is }.
What is website structure?
What is How the content of a website is organized.
What do the numbers beside the h's mean?
What is The size of the text, lower numbers make the text bigger, and higher number make the text smaller.
What is the code for linking external hyperlinks?
What is <a href="https://code.org/">Visit Code.org!</a>
Head tag definition.
What is Tag is used as a container for metadata: metadata is data about the HTML document, such as document title, character set, style sheets, links, and scripts.
What code do you use to underline a word?
What is text-decoration.
What is the HTML element mean?
What is A piece of a website, marked by a start tag and often closed with an end tag.
What is the <li></li> tags used for?
What are Bullet points.
How do you link images to a diffrent html?
What is <a href="index.html"><img src="Dog.jpg"
alt= "Dog running"
width=600px
height= 450px></a>
What does Metadata mean?
What is information about data.
What happens when you use the font-style code?
What is the text turns Italic, Normal, or oblique.
What must the HTML start with to tell what version the HTML will be writen in?
What is <!DOCTYPE>
What do you put to comment?
What is <!--Comment-->
What is the link t link your HTML to CSS style sheet?
What is <link rel="stylesheet" href="style.css">
What is the meta tag used for?
What is It is used to provide information about HTML documents such as page description, author of the document, and keywords.
What code is used to change the font (Changing the font to be cursive for example)?
What is it changes the font to cursive, fantasy,. inherit, monospace, san-serif, and serif.
Where do you put the title tag?
What is between the <head></head>
How do you link an image (full code)?
What is <img src="dog.jpg" alt="My Dog" width="500" height="600">
What does href do?
What is Tells where the browser should navigate to.
What does the Div tag do?
What is It divides the HTML document into sections of content. It is also used to group together HTML elements, allowing you to apply CSS styles to many elements at once.