moth/www/index.html

76 lines
1.7 KiB
HTML
Raw Normal View History

2015-04-02 17:44:49 -06:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2015-04-20 12:08:21 -06:00
<meta name="viewport" content="width=device-width">
2015-04-02 17:44:49 -06:00
<title>Welcome</title>
2015-04-19 23:14:31 -06:00
<link rel="stylesheet" href="style.css" type="text/css">
2015-04-02 17:44:49 -06:00
</head>
<body>
2015-05-06 11:12:02 -06:00
<h1><img src="images/tf6.png" alt="Tracer FIRE"></h1>
2015-04-02 17:44:49 -06:00
2015-04-10 16:37:21 -06:00
<nav>
<ul>
<li><a href="register.html">Register</a></li>
<li><a href="puzzles.html">Puzzles</a></li>
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
2015-04-07 16:57:00 -06:00
<section>
2015-04-09 17:40:03 -06:00
<h2>Getting Started</h2>
2015-04-08 17:28:18 -06:00
<p>
Here is what you need to do:
</p>
<ol>
<li>
<a href="register.html">Register</a> your team.
This only needs to happen once per team,
so if somebody else on your team has already done it,
you don't need to.
</li>
<li>
Get an <a href="puzzles.html">overview of puzzles</a>,
and start working on something.
The list of open puzzles changes over time,
you need to reload the page to get the current version!
</li>
<li>
Check the <a href="scoreboard.html">scoreboard</a>
in another tab,
to see how your team is doing.
</li>
</ol>
2015-04-03 16:52:43 -06:00
</section>
2015-04-09 17:40:03 -06:00
<section>
<h2>Reading Material</h2>
<p>
2015-04-10 16:37:21 -06:00
Stuck? Taking a break?
2015-04-09 17:40:03 -06:00
Here are some things to read.
</p>
<ul>
<li><a href="credits.html">Credits</a></li>
<li>
<a href="scoring.html">About Scoring</a>
explains how we calculate scores,
and why.
Reading this will help you formulate a strategy to win.
</li>
</ul>
</section>
2015-04-08 17:28:18 -06:00
2015-04-15 15:58:46 -06:00
<section id="sponsors">
<img src="images/lanl.png" alt="Los Alamos National Laboratory">
<img src="images/doe.png" alt="US Department Of Energy">
<img src="images/sandia.png" alt="Sandia National Laboratories">
</section>
2015-04-02 17:44:49 -06:00
</body>
</html>