What does HTML stand for?
Hypertext Markup Language
What does CSS stand for?
Cascading Style Sheets
How can we fix the code?
<body>
<h1> I'm Broken Please Help <h1/>
</body>
<h1> I'm fixed now, thanks </h1>
.Wissam{
background-color:blue;
border: dotted pink;
}
The Wissam class will have a blue background and a dotted pink border
Many people may think that H in "h1" stands for "homie", but what does it really stand for?
Header or Header 1
What is CSS used for when developing a website?
Responsible for the design/style of the website.
Tyrone is broken. What's wrong with him?
.Tyrone {
color:red
}
Semi-colon is missing !
color:red;
.Morty{
font-family:Arial;
font-size:32px;
}
How do you place an image on a website using HTML? Explain
<img src="url" width="23" height="23">
What is the CSS id selector for the following HTML code.
<div id="callofduty" class="fortnite">
#callofduty
What's wrong with the code?
<img src='Power' width="123" height="142">
<img src="Power" width="123" height="142">
<p> </p>
<b> </b>
<i> </i>
<div class=""> </div>
Paragraph
Bold
Italic
Will Create a Class
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.
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;
FIX THE CODE !
.steven {
border:solid black;
color;red:
}
Semi-colon and Colon in wrong place
<ul>
<li>Orange</li>
<li>Green</li>
<li>Pink</li>
</ul>
This will create an unordered list
L.H.M.T - What does this mean?
(not a trick question)
HyperText Markup Language
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 !
Please fix the code
<a href= "url">I think the text goes here </a>
There's a space !
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
This is will create an ordered list