-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompetitions.html
83 lines (80 loc) · 4.09 KB
/
competitions.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Competitions</title>
<link rel = "stylesheet" type = "text/css" href = "style.css">
</head>
<body>
<h1 id = "main-title">Lewis and Clark CS Club</h1>
<nav class = "nav navbar-nav justify-content-center">
<div class = "container-fluid">
<ul class = "nav nav-tabs">
<li id ="navigation" class = "active nav-item"><a class="navLink"href = "index.html">Home</a></li>
<div class="dropdown show">
<a id="navigation" class="btn btn-secondary dropdown-toggle" href="#" type ="button" id="dropdownMenuButton" data-toggle ="dropdown" aria-haspopup="true" aria-expanded="false">
Resources
</a>
<div id="navigation" class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="resources.html">Code Resources</a>
<a class="dropdown-item" href="placementQuiz.html">Placement Quiz</a>
<a class="dropdown-item" href="basics.html">Program Basics</a>
</div>
</div>
<!--<li id ="navigation" class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button">Resources</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="resources.html">Coding Resources</a></li>
<li><a class="dropdown-item" href="placementQuiz.html">Placement Quiz</a></li>
<li><a class = "dropdown-item" href = "basics.html">Basics</a></li>
</ul>
</li>-->
<li id = "navigation"><a class = "nav-item navLink active" href = "competitions.html">Competitions</a></li>
</ul>
</div>
</nav>
<br>
<h1>Competitions</h1>
<br>
<h6 class="topOfPage">As a team we will participate in multiple competitions, which are listed below, as well as several competitions that can be done on your own time. For more information,
click any image.
</h6>
<br>
<br>
<div class="row">
<div class="col-lg-6">
<a href="http://www.usaco.org/index.php">
<img class="resourceImage" src="http://www.usaco.org/current/images/usaco_logo.png">
</a>
<br>
<br>
<h3>USACO (USA Computing Olympiad)</h3>
<br>
<p>The USA Computing Olympiad is a national Computer Science Competition where teams have opportunities to compete three
different times throughout the year. Those who do well may be selected to represent the United States overseas.
</p>
</div>
<div class="col-lg-6">
<a href="acsl.org">
<img class="resourceImage"src="https://blog.ktbyte.com/wp-content/uploads/2021/12/acsl-logo.png">
</a>
<br>
<br>
<h3>American Computer Science League</h3>
<br>
<p>The ACSL is an annual competition divided into multiple divisions based on skill level, with tests ranging from knowledge of algorithms to
problem solving with Python, Java, or C++.
</p>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>