initial comit

This commit is contained in:
Kenneth Jao 2017-09-30 17:14:15 -04:00
commit 3294d11a12
3 changed files with 26 additions and 0 deletions

11
gyrio/index.css Normal file
View File

@ -0,0 +1,11 @@
@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');
html {
font-family: 'Raleway';
/*background-color: #15171B;*/
}
body {
margin: 0;
}

15
gyrio/index.html Normal file
View File

@ -0,0 +1,15 @@
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Foxnet</title>
<link rel="icon" href="../assets/favicon.ico">
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<canvas id="glCanvas"></canvas>
</body>
<script src="./index.js"></script>
</html>

0
gyrio/index.js Normal file
View File