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> | |
<head> | |
<link type="text/css" rel="stylesheet" href="stylesheet.css" /> | |
<title>My Photo Page</title> | |
</head> | |
<body> | |
<table> | |
<thead> | |
<tbody> |
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
img { | |
display: block; | |
height: 100px; | |
width: 300px; | |
margin: auto; | |
} | |
p { | |
text-align: center; | |
font-family: Garamond, serif; |
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
p { | |
font-family: Garamond, serif; | |
} | |
#intro { | |
font-weight: bold; | |
color: #000000; | |
} | |
div p { |
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
a:link { | |
text-decoration: none; | |
color: #008B45; | |
} | |
a:hover { | |
color: #00FF00; | |
} | |
a:visited { |
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
//Rock destroys scissors.// | |
//Scissors cut paper.// | |
//Paper covers rock.// | |
//Here lies the conundrum: The Circle of Life.// | |
/*This code will break the game into 3 phases: | |
a. User makes a choice | |
b. Computer makes a choice | |
c. A compare function will determine who wins*/ |
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
// Check if the user is ready to play! | |
prompt ("ARE YOU READY FOR VICTORY?"); | |
confirm ("I AM READY FOR VICTORY!!!"); | |
var age; | |
age = prompt ("What's your age"); | |
if (age < 13) | |
{console.log ("You are allowed to play; but we take no responsibility.")} | |
else {console.log ("You're ready to play with the big boys! PLAY ON!")} | |
console.log ("You are at a Justin Bieber concert, and you hear this lyric 'Lace my shoes off, start racing.'"); | |
console.log ("Suddenly, Bieber stops and says, 'Who wants to race me?'"); |
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
//Rock destroys scissors.// | |
//Scissors cut paper.// | |
//Paper covers rock.// | |
//Here lies the conundrum: The Circle of Life.// | |
/*This code will break the game into 3 phases: | |
a. User makes a choice | |
b. Computer makes a choice | |
c. A compare function will determine who wins*/ |
OlderNewer