HTML
CSS
JAVASCRIPT
PHP
XML
100

1. What does HTML stand for?

Hyper Text Markup Language

100

1. What does CSS stand for?

Cascading Style Sheets

100

1. Inside which HTML element do we put the JavaScript?

<script>

100

1. What does PHP stand for?

PHP: Hypertext Preprocessor

100

1. What does XML stand for?

eXtensible Markup Language

200

2. Who is making the Web standards?

The World Wide Web Consortium

200

2. What is the correct HTML for referring to an external style sheet?

<link rel="stylesheet" type="text/css" href="mystyle.css">

200

2. What is the correct JavaScript syntax to change the content of the HTML element below?

 document.getElementById("demo").innerHTML = "Hello World!";

200

2. PHP server scripts are surrounded by delimiters, which?

 <?php...?>

200

. There is a way of describing XML data, how?

XML uses a DTD to describe the data

300

3. Choose the correct HTML element for the largest heading:

 <h1>

300

3. Where in an HTML document is the correct place to refer to an external style sheet?

In the <head> section

400

4. What is the correct HTML element for inserting a line break?

<br>

400

4. Which HTML tag is used to define an internal style sheet?

<style>

500

5. What is the correct HTML for adding a background color?

<body style="background-color:yellow;">

500

5. Which HTML attribute is used to define inline styles?

 style