mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
45 lines
929 B
HTML
45 lines
929 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Chuck</title>
|
|
<style>
|
|
body {
|
|
background: #222;
|
|
color: #ccc;
|
|
font-family: "Lucida Grande", sans-serif;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
a {
|
|
color: #ff1760;
|
|
}
|
|
div {
|
|
margin-top: 100px;
|
|
width: 700px ;
|
|
margin-left: auto ;
|
|
margin-right: auto ;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h2>
|
|
Hi There!
|
|
</h2>
|
|
<p>
|
|
The game is currently <strong>not available</strong>.
|
|
</p>
|
|
<p>
|
|
To find out when we are running our next test session, join the alpha team by requesting an invitation.
|
|
</p>
|
|
<p>
|
|
You can do that on our blog:
|
|
<a href="http://chuck-game.tumblr.com/about">http://chuck-game.tumblr.com</a>
|
|
</p>
|
|
<p>
|
|
See you soon!<br>
|
|
<i>The developers</i>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|