2011-02-13 07:16:43 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml"
xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="http://www.facebook.com/2008/fbml">
< head >
< meta http-equiv = "X-UA-Compatible" content = "chrome=1" / >
< meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" / >
<!-- Facebook Meta Tags -->
< title > Wyrian - A clone Game of Tyrian in HTML5< / title >
< meta property = "og:type" content = "game" / >
< meta property = "og:title" content = "Wyrian - A clone Game of Tyrian in HTML5" / >
< meta property = "og:site_name" content = "Wyrian" / >
< meta property = 'og:url' content = 'http://www.html5place.com/lab/wyrian/' / >
< meta property = "fb:admins" content = "100001668966106,582526084,100001643794747" / >
< meta property = "og:description" content = "An alpha version clone of the Tyrian Game. Developed during the HTML5 Game Jam 2011 at Paris." / >
2011-02-12 00:36:37 +00:00
< link rel = "stylesheet" media = "all" href = "css/style.css" / >
2011-02-13 05:19:58 +00:00
< link href = "http://fonts.googleapis.com/css?family=Orbitron:400,500,700,900" rel = "stylesheet" type = "text/css" >
2011-02-11 23:27:34 +00:00
< / head >
< body >
2011-02-13 07:16:43 +00:00
< div id = "game-over" >
< div class = "text orbitron" > GAME OVER< / div >
< div id = "restart-game" class = "orbitron" > Restart< / div >
< / div >
< div id = "credits" class = "" >
< strong > HTML5 Game Jam 2011< / strong > < br >
< strong > < a href = "https://github.com/glenux/wyrian" target = "_blank" title = "View Project on GitHub" > Wyrian< / a > v0.2a< / strong > | < a href = "http://www.html5place.com/" title = "View my Website" > Guillaume DE LA RUE< / a > < br > Thanks to < a href = "https://github.com/glenux" target = "_blank" title = "View profile of Glenux on GitHub" > Glenux< / a > for design and Matthieu Bosquet and all people presents :)
< / div >
2011-02-13 05:19:58 +00:00
< div class = "container" id = "GameContainer" >
< div id = "background" class = "layout" > < / div >
< div id = "ground" class = "layout" > < / div >
< div id = "game" class = "layout" >
< div id = "ship" >
< div class = "ship-canon" > < / div >
< div class = "ship_reactor_fire" id = "ship_reactor" > < / div >
< div class = "ship-reactor" > < / div >
< div class = "ship-foray left" > < / div >
< div class = "ship-foray right" > < / div >
< div class = "ship-body" > < / div >
< div class = "wing left" > < / div >
< div class = "wing right" > < / div >
< / div >
< / div >
< div id = "hud" class = "layout" >
< div class = "orbitron" id = "score" > Score : < span > 0< / span > < / div >
< div class = "orbitron" id = "activeElements" > Active Elements : < span > 0< / span > < / div >
< div class = "orbitron" id = "fpsCounter" > FPS : < span > 0< / span > < / div >
< / div >
< / div >
2011-02-12 00:36:37 +00:00
< script type = "text/javascript" src = "js/jquery-1.5.js" > < / script >
2011-02-13 05:19:58 +00:00
< script type = "text/javascript" src = "js/require.js" > < / script >
< script type = "text/javascript" src = "js/GameClass.js" > < / script >
2011-02-12 00:36:37 +00:00
< script type = "text/javascript" src = "js/Wyrian.js" > < / script >
2011-02-11 23:27:34 +00:00
< / body >
2011-02-12 00:06:30 +00:00
< / html >