-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscoreboard.html
More file actions
61 lines (52 loc) · 2.13 KB
/
scoreboard.html
File metadata and controls
61 lines (52 loc) · 2.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Olympia</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Google Font CSS -->
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'>
<style>body{ font-family: 'Oxygen', sans-serif; }</style>
<!--Parse JS -->
<script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.3.4.min.js"></script>
<script src = "js/main.js" type = "text/javascript"></script>
<script type = "text/javascript">
window.onload = verify();
</script>
</head>
<body>
<div class="container-fluid text-center">
<h1 style="font-size: 60px; padding-top: 10%"><b>THS OLYMPICS XXXV</b></h1>
<h3 style="font-size: 40px;">Current Scores</h3>
<div style="padding-top: 50px">
<div class="row">
<div class="col-md-3" style="background: #5cb85c">
<h2><b>Camofrosh</b></h2>
<h1>:3</h1>
</div>
<div class="col-md-3" style="background: #d9534f">
<h2><b>Sophomore Lifesavers</b></h2>
<h1>XP</h1>
</div>
<div class="col-md-3" style="background: #f0ad4e">
<h2><b>Jurassic Juniors</b></h2>
<h1>D:</h1>
</div>
<div class="col-md-3" style="background: #428bca">
<h2><b>Senior Superstition</b></h2>
<h1>;)</h1>
</div>
</div>
</div>
</div>
<style>
.col-md-3 {color: white;}
.col-md-3 h1 { padding-top: 30px; padding-bottom: 50px; font-size: 80px }
</style>
</body>