1. What does HTML stand for?
Hyper Text Markup Language
1. What does CSS stand for?
Cascading Style Sheets
1. Inside which HTML element do we put the JavaScript?
<script>
1. What does PHP stand for?
PHP: Hypertext Preprocessor
1. What does XML stand for?
eXtensible Markup Language
2. Who is making the Web standards?
The World Wide Web Consortium
2. What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="mystyle.css">
2. What is the correct JavaScript syntax to change the content of the HTML element below?
document.getElementById("demo").innerHTML = "Hello World!";
2. PHP server scripts are surrounded by delimiters, which?
<?php...?>
. There is a way of describing XML data, how?
XML uses a DTD to describe the data
3. Choose the correct HTML element for the largest heading:
<h1>
3. Where in an HTML document is the correct place to refer to an external style sheet?
In the <head> section
4. What is the correct HTML element for inserting a line break?
<br>
4. Which HTML tag is used to define an internal style sheet?
<style>
5. What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
5. Which HTML attribute is used to define inline styles?
style