Make it personal
Edit the heading and paragraph text in index.html so the page is about you.
<h1> and </h1> — and leave the tags themselves alone. Save before you refresh.Higher Computing Science · Web Design & Development · WebStorm setup and exploration
Today is about getting a working HTML/CSS tool, exploring what WebStorm can actually do, and applying the page-building basics you already know. Follow the phases in order and tick each result when you can see it for yourself.
Follow the steps directly in WebStorm. If it doesn't activate before we need to move on, switch to a plain text editor with your browser instead — HTML, CSS and JavaScript files run in any browser with no licence required.
Open WebStorm.
Go to Help → Register… or Help → Manage Subscriptions….
In Server address, paste this License Vault URL exactly:
https://jghs.fls.jetbrains.comoauth.fls.jetbrains.com. That address opens automatically later.Optional: click “Test Connection”. If reachable, it should show “Connection successful”.
Click Activate.
Your browser should open automatically to a sign-in page.
Sign in using your school email address ending in @ea.edin.sch.uk.
Return to WebStorm and check that it now shows as licensed or activated.
Use whichever tool you selected. Items marked WebStorm only show off something a plain text editor can't do — if you switched to a text editor, skip those and move to the next one. Every item is complete when you can see the stated result yourself.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Higher Computing Science</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Hello from Higher Computing Science!</h1>
<p>Your WebStorm tool is ready.</p>
</body>
</html>
index.html. You do not need to type or change these yet.body {
font-family: sans-serif;
background-color: #f8f8fc;
color: #1a1a2e;
}
index.html — the link between them is the <link> tag in the HTML.Build on the provided page and take it as far as you can. Use the HTML and CSS you already know — and if you're on WebStorm, reuse Emmet, code completion or rename refactor from Part 2 wherever they save you time. Complete a tier when your own preview shows its checkpoint.
Edit the heading and paragraph text in index.html so the page is about you.
<h1> and </h1> — and leave the tags themselves alone. Save before you refresh.In style.css, change one property so the page's appearance visibly changes — for example its colour, background colour or font.
color: #185FA5; or background-color: #E6F1FB;, then save style.css and refresh the browser.Add one new HTML element — a second paragraph, an image, or a list — and give it its own CSS rule using a class or id selector.
class="highlight" to your new element in the HTML, then target it in the CSS with .highlight { }. Any property inside that rule only affects elements with that class. On WebStorm, an Emmet abbreviation like p.highlight + Tab writes the opening tag with the class already attached.Tick one tool and the highest route you completed. Screenshot this card, print the page, or show it on screen before the end of the lesson.