This is a test post by James Haworth

Level Subject
A-Level Computer Science
A-Level Maths
A-Level Physics
A-Level Further Maths

Here’s an example of an image, which is included using Markdown:

Geometric pattern with fading gradient

Example of highlighted code:

// count to ten
for (var i = 1; i <= 10; i++) {
    console.log(i);
}

// count to twenty
var j = 0;
while (j < 20) {
    j++;
    console.log(j);
}

To be developed