-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
78 lines (63 loc) · 3.61 KB
/
about.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>3D-Snake</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/87/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
</head>
<body style="background-color:black;">
<div class="container white-text">
<div class="row">
<div class="col s6 center-align">
<h4>About SNAKE3d:</h4>
<p class="flow-text">
SNAKE3d is a little 3d JavaScript game based on THREE.JS using WebGL. It was created by four students while a Computer-Science-Camp at University Trier.
We published this game under the <a href="https://opensource.org/licenses/MIT">MIT-License</a> and everyone could help to improve our game:
</p>
<a href="https://github.com/DIBAKU/SNAKE3d"><img class="responsive-img" src="githubLogo2.png" width="200" height="100"></a>
</div>
<div class="col s6">
<h4 class="center-align">Contributors:</h4><br>
<ul class="collection grey">
<li class="collection-item avatar grey darken-4">
<i class="material-icons circle grey">person</i>
<span class="title">Marvin Maurice Ballat</span><br>
<a href="https://github.com/Mauuron/">github.com/Mauuron</a>
<a href="mailto:[email protected]" class="secondary-content"><i class="material-icons">send</i></a>
</li>
<li class="collection-item avatar grey darken-4">
<i class="material-icons circle grey">person</i>
<span class="title">Paulin Meigen</span><br>
<a href="https://github.com/DIBAKU/">github.com/PaulinMeigen</a>
<a href="mailto:[email protected]" class="secondary-content"><i class="material-icons">send</i></a>
</li>
<li class="collection-item avatar grey darken-4">
<i class="material-icons circle grey">person</i>
<span class="title">Minh Tuan Ha</span><br>
<a href="https://github.com/Miinhu/">github.com/Miinhu</a>
<a href="mailto:[email protected]" class="secondary-content"><i class="material-icons">send</i></a>
</li>
<li class="collection-item avatar grey darken-4">
<i class="material-icons circle grey">person</i>
<span class="title">Jan Hillesheim</span><br>
<a href="https://github.com/rhein7/">github.com/rhein7</a>
<a href="mailto:[email protected]" class="secondary-content"><i class="material-icons">send</i></a>
</li>
</ul>
</div>
</div>
<h4 class="center-align">Impressum:</h4>
<p class="flow-text center-align">
<b>Angaben gemäß § 5 TMG und Verantwortlichkeit für den Inhalt nach § 55 Abs. 2 RStV:</b><br>
Jan Hillesheim<br>
Hauptstraße 13<br>
56220 Kaltenengers
</p>
</div>
</body>
</html>