-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (75 loc) · 4.01 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./v2/main.css">
<title>Home | CS.RN v2</title>
<link rel="icon" type="image/png" href="./v2/logos/square.png"/>
<meta property="og:image" content="./v2/logos/square.png" />
<meta property="og:image:width" content="880" />
<meta property="og:image:height" content="880" />
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CS.RN v2 is the second version of an online, mobile-friendly revision guide for GCSE and A Level Computer Science students.">
</head>
<body>
<div id="header"><a href="/"><img id="logo" alt="CS.RN v2" /></a></div>
<div id="homepage">
<div id="last-page-popup" class="hidden-popup">
<a href="/" id="last-page-link" class="no-underline">
<h1>Go to <span id="last-page-title"></span></h1>
<p><i>(Last opened <span id="time-diff"></span>)</i></p>
</a>
<img src="./v2/icons/circle-close.png" id="close-popup" class="no-zoom" />
</div>
<div id="homepage-carousel">
<div class="carousel-item">
<h1 class="carousel-header">
This is the <span class="highlight">best online revision guide</span> for CS students.
</h1>
<p class="carousel-text">
Written by a <b class="no-underline">Grade 9 GCSE Computer Science student</b>, this guide
contains everything you need to know in order to succeed in your exams.
</p>
</div>
<div class="carousel-item">
<h1 class="carousel-header">
Over <span class="highlight">130 pages of content</span> for GCSE and A Level.
</h1>
<p class="carousel-text">
This revision guide covers the <b class="no-underline">whole GCSE Computer Science course</b>.
<i>(A Level content will be finished soon.)</i>
</p>
</div>
<div class="carousel-item">
<h1 class="carousel-header">
Including <span class="highlight">220+ questions</span> throughout the guide.
</h1>
<p class="carousel-text">
Organised into <b class="no-underline">summary questions</b> at the bottom of each page, and
<b class="no-underline">exam-style revision questions</b> at the end of each section.
</p>
</div>
<div class="carousel-item">
<h1 class="carousel-header">
CS.RN v2 is <span class="highlight">100% free</span>, with no ads.
</h1>
<p class="carousel-text">
This revision guide will <b class="no-underline">always remain completely free</b> and
<a href="https://github.com/nayakrujul/CompSci">open source</a>.
</p>
</div>
<div id="bottom">
<!-- <input type="button" class="q-button" value="Next" id="next-button"> <br /> -->
<img class="homepage-arrow no-zoom" id="left-arrow" />
<input type="button" class="q-button" value="Explore the index!" id="explore" />
<img class="homepage-arrow no-zoom" id="right-arrow" />
</div>
</div>
</div>
<div id="footer"></div>
<script>let v1 = null;</script>
<script src="./v2/scripts/version.js"></script>
<script src="./v2/scripts/footer.js"></script>
<script src="./v2/scripts/homepage.js"></script>
</body>
</html>