This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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!"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Animal New York</title> | |
</head> | |
<!--Navigation Bar--> | |
<nav> | |
<ul> | |
<li>"Home"</li> | |
<li>"Features"</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |