Created
January 9, 2013 09:32
-
-
Save v2e4lisp/4491867 to your computer and use it in GitHub Desktop.
index.html
This file contains hidden or 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="description" content="GREE"> | |
<meta name="keywords" content="GREE, openfeint, free games"> | |
<!-- iphone --> | |
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, | |
user-scalable=0"> | |
<meta name="apple-mobile-web-app-capable" content="no"> | |
<meta name="format-detection" content="telephone=no"> | |
<meta name="format-detection" content="address=no"> | |
</head> | |
<body> | |
<div id="bigbang"> | |
<img src="main.jpg"> | |
</div> | |
<div id="message"> | |
<p> I have nothing to say! </p> | |
</div> | |
<div id="pushme"> | |
<p><button type="button" style="height: 25px; width: 400px">GO </button></p> | |
<p><button type="button" style="height: 25px; width: 400px">SEE</button></p> | |
</div> | |
</body> | |
</html> |
This file contains hidden or 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
(defun ya-elt (the-list index) | |
(if (> index 0) | |
(ya-elt (cdr the-list) (- index 1)) | |
(car the-list))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment