-
Notifications
You must be signed in to change notification settings - Fork 0
/
snake.html
65 lines (63 loc) · 3.49 KB
/
snake.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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/style_snake.css">
<script type="text/javascript" src="js/materialize/materialize.min.js"></script>
<script type="text/javascript" src="js/snake/snake2.js"></script>
<ul id="dropdown1" class="dropdown-content" style="font-family:copperplate">
<li><a href="https://github.com/Foogoi/Foogoi.github.io"> PROJECT </a></li>
<li class="divider"></li>
<li><a href="https://github.com/Phionx"> SHANTANU JHA </a></li>
<li class="divider"></li>
<li><a href="https://github.com/hwankyusong"> HWANKYU SONG </a></li>
</ul>
<nav>
<div class="nav-wrapper black" color="black">
<a href="index.html" class="brand-logo "> <img src="images/logo_white.png" alt="" class="circle responsive-img" height=30% width=30%> </a>
<a href="index.html" class="brand-logo center black" style="font-family:copperplate"> SOLID SNAKE DRIVE </a>
<ul class="right hide-on-med-and-down black" style="font-family:copperplate">
<li><a href="project.html" >PROJECT</a></li>
<li><a href="soon.html" >COMING SOON!</a></li>
<li><a href="credits.html">CREDITS</a></li>
<!-- Dropdown Trigger -->
<li><a class="dropdown-button" href="#!" data-activates="dropdown1" >GITHUB PAGES<i class="mdi-navigation-arrow-drop-down right"></i></a></li>
</ul>
</div>
</nav>
</head>
<body style="background-color:#424242">
<!--<h5 style="color:white;font-family:copperplate"> <center> SOLID SNAKE DRIVE </center></h5>-->
<br>
<br>
<div>
<center><canvas id="field" width=1000% height=700%></canvas></center>
</div>
</body>
<footer class="page-footer black">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text"></h5>
<p class="grey-text text-lighten-4" style="font-family:copperplate">GITHUB PAGES </p>
</div>
<div class="col l4 offset-l2 s12">
<ul>
<li><a class="grey-text text-lighten-3" href="https://github.com/Foogoi/Foogoi.github.io" style="font-family:copperplate"> PROJECT: <img width=10% height=10% src="images/github.png"></a></li>
<li>
<a class="grey-text text-lighten-3" href="https://github.com/Phionx" style="font-family:copperplate"> SHANTANU JHA: <img width=10% height=10% src="images/github.png"></a></li>
<li>
<a class="grey-text text-lighten-3" href="https://github.com/hwankyusong" style="font-family:copperplate"> HWANKYU SONG: <img width=10% height=10% src="images/github.png"></a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2015 Shantanu Jha and Hwankyu Song
<a class="grey-text text-lighten-4 right" href="#!"></a>
</div>
</div>
</footer>
</html>