60 lines
1.9 KiB
HTML
60 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<link type="image/x-icon" rel="icon" href="/images/favicon.ico">
|
|
<link type="text/css" rel="stylesheet" href="/css/global.css">
|
|
<link type="text/css" rel="stylesheet" href="/css/club/hackathons.css">
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>FPHS Programming Club Hackathons | That_One_Nerd</title>
|
|
</head>
|
|
|
|
<!--header-->
|
|
|
|
<body>
|
|
<div id="title">
|
|
<h1>Hackathons</h1>
|
|
</div>
|
|
|
|
<div class="line-spacer"></div>
|
|
<div class="line-spacer2"></div>
|
|
|
|
<div class="description">
|
|
<p>
|
|
Hackathons are projects we'll hold on Fridays that have (at least kinda close to) real world problems. The hope is that it'll show not just how to use sometime we learned, but why it's a useful thing to know.
|
|
<br><br>
|
|
Most programs will have a runner and then additional stuff you do yourself.
|
|
<br><br>
|
|
This will be updated with the templates as they arrive.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="line-spacer"></div>
|
|
<div class="line-spacer2"></div>
|
|
|
|
<div class="downloads">
|
|
<h2>Download Templates</h2>
|
|
<div class="download-item">
|
|
<div class="download-item-left">
|
|
<p>The First Hackathon</p>
|
|
</div>
|
|
<div class="download-item-right">
|
|
<select id="language">
|
|
<option>Java</option>
|
|
</select>
|
|
<button onclick="download('hack1', this)">Download</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<!--footer-->
|
|
|
|
<script type="module" src="/js/imports.js"></script>
|
|
<script src="/js/global.js" defer></script>
|
|
<script src="/js/club/hackathons.js" defer></script>
|
|
</html>
|