initial commit

This commit is contained in:
Luke Ogburn
2019-03-30 23:09:24 -04:00
commit b58ced7684
14 changed files with 479 additions and 0 deletions

24
skelly.php Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rubiks My Cube | </title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="cube.css">
<link href="https://fonts.googleapis.com/css?family=Cutive+Mono|PT+Sans|Share+Tech+Mono|Yantramanav:300" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="cube.js"></script>
</head>
<body>
<h1 class="rmcTitle">RUBIKS MY CUBE</h1>
<div id="menu">
<span><a class="mi" href="index.php">HOME</a></span>
<span><a class="mi" href="two.php">2x2x2</a></span>
<span><a class="mi" href="three.php">3x3x3</a></span>
<span><a class="mi" href="four.php">4x4x4</a></span>
<span><a class="mi" href="five.php">5x5x5</a></span>
<span><a class="mi" href="ref.php">REFERENCE</a></span>
</div>
<div id="pageContent"></div>
</body>
</html>