What is the difference between HTML, CSS and JavaScript

HTML, CSS and JavaScript are the building blocks of the internet which are used to build all the websites around. HTML, or Hyper Text Markup Language, defines the layout of a webpage (where the headings go, what's the content that's displayed). CSS, or Cascading Style Sheets, define the styling of the website (what colours are used for each HTML component, whta font is used for text across the website). JavaScript is the main programming language that allows making your webpage interactive (clicking a button opens a box, filling in a form sends the information to a server).

DJ

Related Computing A Level answers

All answers ▸

Write pseudocode for the linear search algorithm, and then explain it’s complexity using big-O notation


Given an ordered array of integers "V" and a integer "Sum", write a function that would return "true" if it finds two numbers in V that add up to Sum, and "false" otherwise.


What are the main differences between different loops when it comes to coding ?


A common construct found in many algorithms is a loop. Using pseudocode, write a pre-condition loop to output all of the even numbers between 99 and 201.