Step 1

We'll start by creating an empty HTML project; create index.html, style.css, and script.js files.

Add the following to the index.html file:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>SIS API Search</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <script src="script.js"></script>
  </body>
</html>

We'll add minimal styling to style.css:

body {
  margin: 2em;
  text-align: center;
  line-height: 1.5;
  font-size: 1.1em;
}