This repository has been archived by the owner on Nov 16, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (65 loc) · 2.25 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head><meta charset="utf-8">
<!-- basic info -->
<title>Scrabbli</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- css -->
<link rel="stylesheet" href="components/bootstrap.css/css/bootswatch-spacelab.min.css">
<link rel="stylesheet" href="styles.css">
<!-- icons -->
<!--<link rel="icon" href="favicon.ico">-->
</head>
<body>
<div class="container-fluid" id="main-column">
<!-- navbar -->
<nav class="navbar"><div class="navbar-inner">
<a class="brand" href="index.html">Scrabbli</a>
<ul class="nav">
<li class="active"><a href="index.html">
<i class="icon-home"></i> Home
</a></li>
<li><a href="rules.html">
<i class="icon-file"></i> Rules
</a></li>
<li><a href="assignments.html">
<i class="icon-user"></i> Assignments
</a></li>
</ul>
</div></nav>
<!-- page content -->
<div id="content">
<p>
Welcome to the website for Scrabbli, a new, short project by a few
<a href="http://sse.se.rit.edu">SSE</a> members and alums.
</p>
<h2>About Scrabbli</h2>
<p>
Scrabbli is a simple contest where the participants create a scrabble solver
that given their hand and the current state of the board, return the best next move (i.e.
highest scoring word)
</p>
<p>
To make coding more fun, everyone participating will be writing their
solutions in different languages (for the most part).
</p>
<h2>Scrabbli Redux</h2>
<p>
So none of us completed our scrabble solvers the first time around. So we've decided to bring it back.
Starting this summer begins the scrabbli redux where hopefully we can all finish what we've started.
Same rules apply. No limits on languages anymore and you can start over in a completely new language
if you would like. Whatever floats your boat. The skys are the limit. We are welcoming new participants
as well.
</p>
<div id="sse-seal">
<img src="files/approvedOlives2.png" width="400">
</div>
</div>
</div>
<!-- scripts -->
<script src="components/jquery/jquery.js"></script>
<script src="components/bootstrap.css/js/bootstrap.min.js"></script>
<script src="scripts.js"></script>
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</body>
</html>