HTML part 1
HTML part 2
CSS
Debug
Internet &Browser
100
What does H stands for in HTML?

A) Hypertext
B) N/
C) A/
HyperText
100
What is the acronym for </hr>?
Horizontal Ruler
100
What property changes the text color?
color:
100

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<p>Blah blah blah blah blah </p>
<body>
</body>
</html>

The P tag isn't in BODY tag
100
Who is the father of the Internet (and is deaf!)
Vinton Gray "Vint" Cerf
200
What does M stands for in HTML?
Markup
200
What does "i" stands for in <i>
Italics
200
What property changes the color behind the words?
background-color:
200

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Blah blah blah blah blah </p>
</body>
<html>

Closing tag for HTML

200
What is the name of the first browser
300
What does L stands for in HTML?
Language
300
What does "u" stands for in <ul>
Unordered
300
What property changes the text's font?
font-family:
300

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Super Bowl was a super game</p>
</body>
</html>

Nothing to debug
300
What is the leading browser usage?
Internet Explorer 8.0
Link to the current statistics
400
What is the current version of HTML?
HTML5
400
What does "alt" means in image tags?
Alternative text for screen readers
400
Come up a selector that would select a class
.class (a dot means class)
400

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Super <span style=“color=yellow”>bowl </span>was a super game!!</p>
</body>
</html>

style:".." Not style=".."
400
What does HTTP stands for?
HyperText Transfer Protocol
500
Who invented World Wide Web?
Tim Berners-Lee
500
What does "div" stands for?
Division
500
In this CSS snippet:

div a {
color:blue;
}

"div a" is called, selector "color" is called, property "blue" is called ??
value
500

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Super <b><i>bowl</b></i> was a super game!!</p>
</body>
</html>

Nesting tag ordering for B and I
500
What does FTP stands for?
File Transfer Protocol