HTML
CSS
FIX THE CODE
WHAT WILL THIS PRINT/CREATE?
100

What does HTML stand for?

Hypertext Markup Language

100

What does CSS stand for?

Cascading Style Sheets

100

How can we fix the code?

<body>

<h1> I'm Broken Please Help <h1/>

</body>

<h1> I'm fixed now, thanks </h1>

100

.Wissam{

background-color:blue;

border: dotted pink;

}

The Wissam class will have a blue background and a dotted pink border

200

Many people may think that H in "h1" stands for "homie", but what does it really stand for?

Header or Header 1

200

What is CSS used for when developing a website?

Responsible for the design/style of the website. 

200

Tyrone is broken. What's wrong with him?


.Tyrone {

color:red

}


Semi-colon is missing ! 


color:red;

200

.Morty{

font-family:Arial;

font-size:32px;

}

The .morty class will be 32 pixels big . The font will be Arial.
300

How do you place an image on a website using HTML? Explain

<img src="url" width="23" height="23">  

300

What is the CSS id selector for the following HTML code.

<div id="callofduty" class="fortnite">

#callofduty

300

What's wrong with the code?

<img src='Power' width="123" height="142">

<img src="Power" width="123" height="142">

300

<p> </p>

<b> </b>

<i> </i>

<div class=""> </div>

Paragraph

Bold

Italic

Will Create a Class

400

Which year was HTML created?

Answer:1993

The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of HTML.

400

I want to change the background color and add a border to my .Ethan class 


What properties am I using?

background-color:He's green now ;

border: He's in a box now;

400

FIX THE CODE !

.steven {

border:solid black;

color;red:

}

Semi-colon and Colon in wrong place

400

<ul>
  <li>Orange</li>
  <li>Green</li>
  <li>Pink</li>
</ul>

This will create an unordered list

500

L.H.M.T - What does this mean?

(not a trick question)

HyperText Markup Language

500

What will this code do for <p> Hi </p> ?

p:hover {
  color: yellow;

}


The color will change while hovering over with cursor

TRY IT OUT !

500

Please fix the code

<a href= "url">I think the text goes here </a>  

There's a space !

500

<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

This is will create an ordered list