-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 3.37 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="core.css" />
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<title>Yetris!</title>
</head>
<body>
<div id="back">
<div id="inlogo"></div>
<div id="intxt" align="center">
<span id="t1">Press</span>
<span id="t2">START</span>
<span id="t3">to</span>
<span id="t4">play.</span>
</div>
<div id="scorebox">Score: 0</div>
<div id="levelbox">Level: 0</div>
<div id="holder">
<div id="container"></div>
</div>
<div id="lefttxt">
<p><strong>» Keyboard:</strong></p>
<span>
<img src="img/mup.gif" alt="up" vspace="2" hspace="23"/> - rotate
</span><br />
<span>
<img src="img/mleft.gif" alt="left" hspace="1"/>
<img src="img/mdown.gif" alt="down" hspace="1" align="top" />
<img src="img/mright.gif" alt="right" hspace="1" />
- move
</span><br />
<span>
<img src="img/mesc.gif" alt="esc" vspace="2"/> - quit
</span><br />
<span>
<img src="img/mf11.gif" alt="fullscr" vspace="2"/> - full screen
</span>
<p><strong>» Author:</strong></p>
<span>
<a href="https://twitter.com/kcieslak" style="font-size:5px"><i class="fa fa-twitter fa-3x"></i></a>
Krzysztof Cieslak
</span><br/>
<span class="small-notes"> 2007-01-03</span><br/>
<span class="small-notes"> <strong>Refactored:</strong></span><br/>
<span class="small-notes"> 2022-08-06</span>
<p><strong>» Score:</strong></p>
<span class="small-notes"> One line: 2 points</span><br/>
<span class="small-notes"> 80 points: next level</span>
</div>
<div id="nexttxt" align="center">Next:</div>
<div id="nextbox"><div id="nx"><div id="nxin"></div></div></div>
<div id="powered">Powered By
<a href="http://developer.yahoo.com/yui" target="_blank">
<img id="logo" src="img/yahoo.gif" border="0" alt="yahoo" hspace="1"/>
</a>
</div>
<div id="brandbox">
<a href="https://github.com/krcs/yetris" class="brand"><i class="fa fa-github fa-3x"></i></a>
</div>
<div id="btn" align="center" class="btnoff">Start</div>
</div>
<script type="text/javascript" src="yui/yahoo.js"></script>
<script type="text/javascript" src="yui/event.js"></script>
<script type="text/javascript" src="yui/dom.js"></script>
<script type="text/javascript" src="yui/animation.js"></script>
<script type="text/javascript" src="core.js"></script>
</body>
</html>