-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (110 loc) · 5.79 KB
/
index.html
File metadata and controls
128 lines (110 loc) · 5.79 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!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 Michigan Programming Team." />
<meta name="author" content="Ian DeHaan" />
<title>UM Programming Team</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" />
<style>
.border-primary {
border-color: #00274C !important;
}
.border-secondary {
border-color: #FFCB05 !important;
}
a:not(.btn):visited {
text-decoration: none;
color: blue;
}
a:not(.btn):link {
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: none;
background-color: pink;
}
</style>
</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="summer.html">Summer Challenge</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/northcampus2.webp');
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="">UMichigan Programming Team</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="">UMichigan Programming Team</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="">UMichigan Programming Team</span></h1></div>
<!-- Visible only on xl -->
<div class="d-none d-xl-block"><h1 class="display-5 stroke text-nowrap"><span class="">UMichigan Programming Team</span></h1></div>
</div>
</div>
<!-- Background image -->
<main class="container">
<div class="bg-light p-5 rounded border">
<h2 class="text-primary">Summer Challenge 2025</h2>
<p class="lead">We are running a summer-long contest to see who can solve the most problems. All current or incoming University of Michigan students are eligible to join. There is a leaderboard and prizes!</p>
<a class="btn btn-lg btn-primary" href="summer.html" role="button">Summer Challenge »</a>
</div>
<!-- <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 Michigan Problem Team</b> (UMPT). We are a small group of passionate competitive programmers located in Ann Arbor, Michigan. 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 , North America Championship, and World Finals. Team members also participate in the Meta Hacker Cup, codeforces contests, and more. </p>
<br>
<h3>What do we do?</h3> <hr>
<p> The University of Michigan Programming Team 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 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>
<p>Site adapted from <a href="https://uapspc.github.io/index.html">UAPSPC</a>.</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>