code-katas/snake/snake-redesign.html

29 lines
1.1 KiB
HTML
Raw Normal View History

2014-12-11 22:52:55 -06:00
<!doctype html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
<link href="snake.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class=corner></div><div class=corner></div><div class=corner></div><div class=corner></div>
<div id=container>
<div class=corner></div><div class=corner></div><div class=corner></div><div class=corner></div>
<header><h1>SNAKE</h1></header>
<section id=description>
Play SNAKE! You are the <span style="color: #88F">BLUE</span>
snake. Eat the <span style="color: green">GREEN</span> food to
grow longer! But be careful! Don't run into the walls or
yourself!
<section>
<section id=levelSelect>
</section>
<section id=gameContainer>
</section>
<section id=controls>
</section>
<section id=editorControls>
</section>
</div>
</body>
</html>