Skip to content

Instantly share code, notes, and snippets.

View ckotsovos's full-sized avatar

Christos M. Kotsovos ckotsovos

  • CodeFellows Army
  • Seattle Washington
View GitHub Profile
@ckotsovos
ckotsovos / (Riddler).html
Created February 17, 2015 05:41
Riddler Puzzle Game 2/16/15
<!DOCTYPE html>
<head>
<title>???Riddler???</title>
<link rel="stylesheet" type="text/css" href="Riddler.css">
</head>
<body>
<aside>
<button id="playButton">
<P>?WANT TO PLAY A GAME?</P>
</button>
@ckotsovos
ckotsovos / (Riddler).html
Created February 14, 2015 06:36
Riddler Game Webpage V.1
<!DOCTYPE html>
<head>
<title>???Riddler???</title>
<link rel="stylesheet" type="text/css" href="Riddler.css">
<script src="puzzle.js"></script>
</head>
<body>
<aside>
<div id="playButton">
<a href="#">?WANT TO PLAY A GAME?</a>
<script>
var Animal = function(n, s, f) {
this.name = n;
this.speed = s;
this.focus = f;
this.positon = 0;
this.report = function() {
return this.name + " is at " + this.positon;
};
this.run = function() {
@ckotsovos
ckotsovos / Animal(V2).html
Created February 11, 2015 02:23
Animal New York (Site Rebuild V2)
<!DOCTYPE html>
<html>
<head>
<title>Animal New York</title>
</head>
<!--Navigation Bar-->
<nav>
<ul>
<li>"Home"</li>
<li>"Features"</li>
1.Animal New York
1.Untitled NAV
2.Untitled SECTION
1.Untitled SECTION <!-- /Right <aside> (Hot Section Directory). -->
1.Untitled ARTICLE
2.Untitled ARTICLE
3.Untitled ARTICLE
4.Untitled ARTICLE
5.Untitled ARTICLE
6.Untitled ARTICLE
@ckotsovos
ckotsovos / Riddle V.2
Last active August 29, 2015 14:14
Chris Kotsovos Guessing Game Riddle V.2
<!DOCTYPE html>
<html>
<script>
var myRiddle,
myRiddle = "eye";
guess = prompt("What begins with an E and ends with an E, but contains one letter?");
if (guess.toLowerCase() == myRiddle.toLowerCase()) {
message = "Well you're as clever as you look!";