HTML
CSS
Hello World
Extra/ Random
Webpage Details
100

What does HTML stands for?

Hypertext Markup Language

100

Write in the chat a hex code for any shade of red using outside resources

Any shade of red hex code
100

What is the first tag in your code always?

<!DOCTYPE html>

100

What is the world's largest network?

The internet 


100

How do I add a comment to my code?

<!-- This is a comment -->

200

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

200

What is a <Div>?

The <div> tag defines a division or a section in an HTML document

200

The _____ of a Web page contains the information that is displayed in the webpage.

Body 

200

Bulleted lists are also called

Unordered


200
Who sees the comment on a code? And what is the purpose of adding a comment?
Only the person writing the code (the coder)

The comment helps keep the person writing the code organized and makes the code more clear for the coder




300

What is the biggest HTML heading?

Heading one

300

How many <Divs> max in a code? And what is the purpose of having divs?

Any amount! Divs help organize your code

300

Does HTML go before or after CSS

Normally after

300

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>

300

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.

400

How do I highlight text in HTML?

<mark>

400

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

400

Show me a title tag in the chat with anything as the title in it

<title> title </title>

400

What is the default text color in html

black


400

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!

500
Make an unordered list code in the CHAT that lists "blue", "red", and "green"

<ul>

<li> blue </li>

<li> red </li>

<li> green </li>

</ul>

500

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>

500

Does html or css go in the <body> tag?

html

500

What is the default background color 

White

500

How many colors can I use the gradient code on?

As many as you wish!

M
e
n
u