What is the purpose of
HTML | CSS | JavaScript
Describe and name the three methods that can be used to insert CSS into a webpage
List the 9 CSS formatting commands that you are expected to know.
How is a class identified in HTML / CSS?
How is an ID identified in HTML / CSS?
What would be the HTML code to create a bullet point list with the values “Hello” and “World” in the list?
What would be the HTML code to create a numbered list with the values “Hello” and “World” in the list?
What HTML tags are used to embed JavaScript in an HTML page?
What HTML tags are used to embed CSS in an HTML page?
How would I add a link to the BBC home page using HTML code?
How would I add a 100x100 image called “smile.png” to an HTML page and set appropriate alternative text?
What is the HTML code to add a form to a page with a text box and a submit button?
What is the purpose of the div tag?
To group a section of HTML code together so they can be referred to as one identifier.
What are the three largest headings in HTML?
What is the purpose of the title tag, and where does it appear?
This would appear in the tab name at the top of the web browser.
How do you get JavaScript to show an alert box?
alert(“Message to alert”)
How do you capture the input from a form textbox using JavaScript?
passcode = document.GetElementById(“nameOfID”).value
How do you update an HTML element using JavaScript?
document.GetElementById(“nameOfID”).innerHTML = “Hello World”
How do you write a WHILE loop in JavaScript
How do you write an IF statement in JavaScript
Define compression
Define lossy compression and what types of files it would and wouldn’t be suited to.
Define lossless compression and what types of files it would and wouldn’t be suited to.
State the two examples of lossless compression
Run Length Encoding
Dictionary Coding