What does HTML stands for?
Hypertext Markup Language
Write in the chat a hex code for any shade of red using outside resources
What is the first tag in your code always?
<!DOCTYPE html>
What is the world's largest network?
The internet
How do I add a comment to my code?
<!-- This is a comment -->
1. What is a HTML heading? 2. What is the difference between a heading and paragraph?
1. Title or a subtitle which you want to display on the webpage
2. Paragraph tags are a smaller text that represents a paragraph
What is a <Div>?
The <div> tag defines a division or a section in an HTML document
The _____ of a Web page contains the information that is displayed in the webpage.
Body
Bulleted lists are also called
Unordered
The comment helps keep the person writing the code organized and makes the code more clear for the coder
What is the biggest HTML heading?
Heading one
How many <Divs> max in a code? And what is the purpose of having divs?
Any amount! Divs help organize your code
Does HTML go before or after CSS
Normally after
How do you highlight, bold, underline, and italicize text?
Highlight: <mark> and </mark>
Bold: <b> and </b>
Underline: <u> and </u>
Italicize: <i> and </i>
What's the difference between ordered and unordered lists? Type a code for ordered and unordered lists in the chat with the same things being listed and show the DIFFERENCE
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<h2>An Ordered HTML List</h2>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Ordered lists are ordered with numbers and unordered lists use bullets.
How do I highlight text in HTML?
<mark>
What is wrong with this code:
<!DOCTYPE html>
<html>
<head>
<title>Title!</title>
</head>
<style>
body {
background-color: lightblue;
}
.Trees {
background-color: yellow;
}
</style>
<body>
<div class="trees">
<h1>Trees</h1>
<p>oat, pine, palm </p>
</div>
</body>
</html>
It should be:
<div class="trees">
So the Divs match up
Show me a title tag in the chat with anything as the title in it
<title> title </title>
What is the default text color in html
Why does HTML and CSS go well together?
Because HTML makes the web pages/ websites, while CSS adds the color and decorations to the webpages and makes it look prettier, so they work well together!
<ul>
<li> blue </li>
<li> red </li>
<li> green </li>
</ul>
Fix the following link code and write the correct one in the chat:
<a href="https://www.google.com/" >This is a link</a>
<a href="https://www.google.com/" target="_blank">This is a link</a>
Does html or css go in the <body> tag?
html
What is the default background color
White
How many colors can I use the gradient code on?
As many as you wish!