-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (84 loc) · 4.97 KB
/
index.html
File metadata and controls
98 lines (84 loc) · 4.97 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="The site of the University of Alberta Programming Contest Club." />
<meta name="author" content="Jason Cannon" />
<title>UofA Programming Contest Club</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-light navbar-expand-md border-bottom border-5 border-primary">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="assets/img/logo.png" height="30" alt="">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#"><b>Home</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="getting_involved.html">Getting Involved</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resources.html">Resources</a>
</li>
<li class="nav-item">
<a class="nav-link" href="uapc/index.html">University of Alberta Programming Contest</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Background image -->
<div
class="p-5 text-center bg-image border-secondary border-bottom border-5"
style="
background-image: url('assets/img/uofa_opacity_45.png');
background-size: cover;
height: 150px;
margin-bottom: 40px;
">
<div class="text-white">
<!-- Visible only on xs -->
<div class="d-block d-sm-none"><h1 class="display-6 stroke text-nowrap"><span class="">UofA Programming Club</span></h1></div>
<!-- Visible only on sm-md -->
<div class="d-none d-sm-block d-lg-none"><h1 class="display-6 stroke text-nowrap"><span class="">UofA Programming Club</span></h1></div>
<!-- Visible only on lg -->
<div class="d-none d-lg-block d-xl-none"><h1 class="display-6 stroke text-nowrap"><span class="">UofA Problem Solving and Programming Club</span></h1></div>
<!-- Visible only on xl -->
<div class="d-none d-xl-block"><h1 class="display-5 stroke text-nowrap"><span class="">UofA Problem Solving and Programming Club</span></h1></div>
</div>
</div>
<!-- Background image -->
<main class="container">
<div class="bg-light p-5 rounded border">
<h2 class="text-primary">Getting Involved With The Club</h2>
<p class="lead">This is the site of the <b>University of Alberta Problem Solving and Programming Club</b> (UAPSPC). We are a small group of passionate competitive programmers located in Edmonton, Alberta. We meet weekly and anyone is welcome to attend!</p>
<a class="btn btn-lg btn-primary" href="getting_involved.html" role="button">Getting involved »</a>
</div>
<br>
<div class="p-7">
<h3>What is Competitive Programming?</h3> <hr>
<p><a href="https://en.wikipedia.org/wiki/Competitive_programming">Competitive Programming</a> is the act of writing efficient programs to solve well-defined problems. Solving these logical puzzles requires strong problem-solving skills, creativity, algorithmic thinking, and knowledge of programming languages. Often, these problems have strict time and space requirements, so highly efficient algorithms and paradigms must be implemented to solve them.</p>
<p>Participants may compete (both individually and in teams) in numerous international competitions, including the ICPC Regionals and even the ICPC World Finals. Club members may also participate in the Google Kick Start and Code Jam, the Alberta Collegiate Programming Contest, the University of Alberta Programming Contest, and more. </p>
<br>
<h3>What do we do?</h3>
<p> The University of Alberta Programming Club is a group of passionate students and faculty who solve programming problems in a competitive setting. We compete throughout the year, often in teams of three club members who collaborate to solve as many programming problems as possible in a limited-time setting. We meet weekly to discuss intriguing programming problems and their solutions, which often involve algorithms not normally taught during a standard undergraduate curriculum. We discuss these algorithms as a group, often providing detailed explanations and showing sample code. Anyone is welcome to attend!
</p>
</div>
</main>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>