-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaceholder.html
87 lines (77 loc) · 3.58 KB
/
placeholder.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>OkstateACM Fall 2017 Programming Competition</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://bootswatch.com/slate/bootstrap.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="./images/favicon.ico" sizes="64x64" type="image/vnd.microsoft.icon">
</head>
<body>
<!-- JUMBOTRON -->
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-xs-3">
<a href="http://cs.okstate.edu/acm/"><img src="./images/acm.png" class="img-responsive header-image" width="75%"/></a>
</div>
<div class="col-xs-6">
<h1 class="title">Programming Competition</h1>
<h2 class="subtitle">October 4, 2017</h2>
</div>
<div class="col-xs-3">
<a href="http://okstate.edu/"><img src="./images/osu.png" class="img-responsive header-image" width="75%"/></a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="panel panel-default">
<div class="panel-heading">
<h1>Instructions</h1>
</div>
<div class="panel-body">
Use <strong>Java, C, C++, or Python (2 or 3)</strong> to implement a solution to the problems listed below.
When you are done, raise your hand to pass it off to one of the judges or email your solution to <a href="mailto:[email protected]">[email protected]</a>.
You have from 5:30pm to 8:30pm. The most points win. Good luck.
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h1>Rules</h1>
</div>
<div class="panel-body">
<ul>
<li>All of OSU's academic integrity rules apply. You are free to use Google/your friends so long as your code is your own.</li>
<li>Unless the problem specifies otherwise, all input will be read from stdin (so, for Java this means a Scanner reading System.in)</li>
<li>You must pass your code off (or at least have had your hand up) before 8:31 P.M. in order to get credit for the problem.</li>
<li>If you come to one of the judges to pass off a program and it doesn't work, you may fix it and come back as many times as necessary, given it is still before 8:31 P.M.</li>
<li>If any problem seems too ambigous, ask a judge to clarify.</li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h1>Thank You To Our Sponsors</h1>
</div>
<div class="panel-body">
<center><a href="http://paycomonline.com"><img src="images/paycom_logo.png" alt="Paycom Logo"></a></center><br />
The ACM would like to extend a huge thank you to <a href="http://www.paycomonline.com/">Paycom</a>
for sponsoring tonight's Programming Competition! Paycom provided tonight's pizza and prizes.
We are incredibly thankful for their support.
</div>
</div>
<hr>
<center>
<h1 class="orange">The contest will begin at 5:30pm</h1>
<h3>Please refresh this page at that time.</h3>
</center>
</div>
<hr>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>