-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (98 loc) · 6.14 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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>
<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">
<style>
#title{
margin-bottom: 10%;
margin-top: 10%;
}
#playbutton{
margin-bottom:1%;
margin-top:5%; <!--change when customization is added-->
}
#playbutton2{
margin-bottom: 9%;
margin-top: 1%;
}
</style>
<center>
<h1 id="title" style="font-family:copperplate;font-size:800%;font-style:oblique" > <b> SOLID SNAKE DRIVE </b></h1>
<!--
<div class="switch">
<label style="font-family:copperplate;font-size:200%">
Single
<input type="checkbox">
<span class="lever"></span>
Double
</label>
</div>
<div style="font-family:copperplate;font-size:200%;color:#bdbdbd">
SNAKE COLOR: <input type="color" value="#000000">
</div>
<div class="input-field col s12">
<select style="font-family:copperplate;font-size:200%;color:#bdbdbd">
<option value="" disabled selected>Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<label style="font-family:copperplate;font-size:200%;color:#bdbdbd">Materialize Select</label>
</div>-->
<a id="playbutton" href="snake.html" class="waves-effect waves-light btn-large" style="font-family:copperplate;font-size:200%"> <b> PLAY! </b></a>
<br>
<a href="Instructions.html" class="waves-effect waves-light btn-large" style="font-family:copperplate;font-size:100%"> <b> INSTRUCTIONS </b></a> <br>
<a id="playbutton2" href="snake2.html" class="waves-effect waves-light btn-large" style="font-family:copperplate;font-size:200%"> <b> PLAY MULTIPLAYER! </b></a>
</center>
</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>