-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (75 loc) · 3.67 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Why Choose Computer Science?</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<div class="wrapper bg-image-index">
<div class="homepage-title">
<span class="title-cap">W</span>hy <span class="title-cap">C</span>omputer <span class="title-cap">S</span>cience?
</div>
<div class="homepage-box">
<div class="content-table">
<div class="content-row">
<a href="careers.html" id="careerLink" style="text-decoration: none;">
<div id="careerBox" class="homepage-button-cell careers-square homepage-purple-border">
<div id="careerBack" class="homepage-button-text-back">
<div class="homepage-button-text">Careers & Salaries</div>
</div>
</div>
</a>
<div class="homepage-button-spacer"></div>
<a href="coop.html" id="coopLink" style="text-decoration: none;">
<div id="coopBox" class="homepage-button-cell coop-square homepage-orange-border">
<div id="coopBack" class="homepage-button-text-back">
<div class="homepage-button-text">Co-op Opportunities</div>
</div>
</div>
</a>
<div class="homepage-button-spacer"></div>
<a href="myths.html" id="mythLink" style="text-decoration: none;">
<div id="mythBox" class="homepage-button-cell myths-square homepage-green-border">
<div id="mythBack" class="homepage-button-text-back">
<div class="homepage-button-text">Busting Myths About CS</div>
</div>
</div>
</a>
<div class="homepage-button-spacer"></div>
<a href="nextSteps.html" id="nextStepsLink" style="text-decoration: none;">
<div id="nextStepsBox" class="homepage-button-cell next-steps-square homepage-red-border">
<div id="nextStepsBack" class="homepage-button-text-back">
<div class="homepage-button-text">The Next Steps</div>
</div>
</div>
</a>
</div>
</div>
<div style="margin-top: 20px;">
<center>
<video width="854" height="480" loop autoplay controls>
<source src="video/Code-9-min.mp4" type="video/mp4">
<source src="video/Code-9-min.webm" type="video/webm">
<source src="video/Code-9-min.ogv" type="video/ogg">
Your browser does not support the video tag.
</video>
</center>
</div>
<center> <div class="homepage-copyright">"Code Stars" © Code.org</div></center>
</div>
</div>
<script type="text/javascript">
var _mfq = _mfq || [];
(function () {
var mf = document.createElement("script"); mf.type = "text/javascript"; mf.async = true;
mf.src = "//cdn.mouseflow.com/projects/4eeb2b08-cf15-42ec-b96d-d27701064468.js";
document.getElementsByTagName("head")[0].appendChild(mf);
})();
</script>
</body>
</html>