-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dust - Digital QP Search Tool</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
/>
</head>
<body>
<script src="https://kit.fontawesome.com/b968a264b2.js" crossorigin="anonymous"></script>
<main class="container">
<nav>
<ul>
<li><strong>Dust - QP Search Tool</strong><i></i></li>
</ul>
<ul>
<li><a href="./national-5.html">National 5</a></li>
<li><a href="./higher.html">Higher</a></li>
<li><a href="./adv-higher.html">Adv Higher</a></li>
</ul>
</nav>
</main>
<main class="container" id="welcome">
<h2>Welcome!</h2>
<p>This site was developed in order to make searching for SQA digital past papers slightly easier. Just select the level you are learning at, and then either scroll for the subject, or just search using the search bar at the top of the page.</p>
<p>Everything links back to the SQA, and I take no claim to making these papers. I just wanted an easier way to search for the papers I need.</p>
<p>While I will try and update this every year, please feel free to submit a PR or issue for any missing papers you find.</p>
</main>
<main class="container" id="levels">
<h2>Avaliable Levels</h2>
<ul>
<li><a href="./national-5.html">National 5</a></li>
<li><a href="./higher.html">Higher</a></li>
<li><a href="./adv-higher.html">Advanced Higher</a></li>
</ul>
</main>
<footer class="container">
<p>All papers belong to the SQA. This tool was developed to improve seraching for SQA digital papers.</p>
</footer>
</body>
</html>