forked from bjc-edc/bjc-r
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·54 lines (48 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="/bjc-r/llab/loader.js"></script>
<title>Beauty and Joy of Computing</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#slideshow > div:gt(0)").hide();
setInterval(function() {
$('#slideshow > div:first')
.fadeOut(1000)
.next()
.fadeIn(1000)
.end()
.appendTo('#slideshow');
}, 3000);
});
</script>
</head>
<body>
<div class="overlay">
<img class="imageLeft" src="/bjc-r/img/web/bjc-logo.png" alt="Beauty and Joy of Computing" title="Beauty and Joy of Computing"/>
<div>
<h1>
Beauty and Joy of Computing<br />
<span class="subhead">an <a style="color:#fff;" href="https://apstudent.collegeboard.org/apcourse/ap-computer-science-principles" target="_blank">AP CS Principles</a> course</span>
</h1>
</div>
</div>
<div id="slideshow">
<div><img src="/bjc-r/img/slideshow/slideshow_01.jpg" alt="BJC in action" title="BJC in action" /></div>
<div><img src="/bjc-r/img/slideshow/slideshow_02.jpg" alt="BJC in action" title="BJC in action" /></div>
<div><img src="/bjc-r/img/slideshow/slideshow_03.jpg" alt="BJC in action" title="BJC in action" /></div>
<div><img src="/bjc-r/img/slideshow/slideshow_04.jpg" alt="BJC in action" title="BJC in action" /></div>
</div>
<span class="logos">
<img style="height:50px;" src="/bjc-r/img/course/EDC_DarkBackgroundLogo.png" alt="Education Development Center, Inc." title="Education Development Center, Inc." />
<img style="height:65px;" src="/bjc-r/img/course/nsf1.svg" alt="National Science Foundation" title="National Science Foundation" />
</span>
<p class="center mainpagebuttons">
<a href="/bjc-r/cur/compare.html" class="blbtn" target="_blank">How is BJC special?</a>
<a href="/bjc-r/course/bjc4nyc.html" class="blbtn">BJC Curriculum</a><br />
<a href="http://snap.berkeley.edu/run" target="_blank"><img src="/bjc-r/img/course/run-snap-now.png" alt="Run Snap! now!" title="Run Snap! now!" /></a>
</p>
</body>
</html>