Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Friday, December 14, 2012
Codecademy Sample Solution: Codeyear Border, Margin, and Padding
My Blog
Anything You Want
Where my thoughts can roam free.
Home
My Projects
My Photos
About Me
What's the meaning of life?
April 20, 2012
I'm still working on it...
/* sample solution to style.css */ /* Add your styles here! */ h1, h2 { color:red; } .post { border: 1px dashed #ccc; } .date, #tagline { color:blue; } #nav li { display: inline; padding: 5px; } #nav li:hover { background-color: orange; }
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
This is an example of
scrolling text
using Javascript.
Popular Posts
What hotkeys can you use in a Python shell to repeat the previous command you typed?
Answer: Alt - p p stands for previous. If you keep pressing Alt - p, you will continue cycling back through commands you typed before. I...
Codecademy Sample Solution: Conditional Assignment
favorite_animal ||= "dog" favorite_animal ||= "cat"
Codecademy: "Function and Control Flow"
//sample solution def isEven(x): if(x % 2 == 0): return "yep" else: return "nope"
Codecademy Sample Solution: Adding the Parse SDK to your app
<html> <head> <!-- Add the Parse SDK here! --> <script src="http://www.parsecdn.com/js/par...
Codecademy: Codeyear Nesting conditional statements
//sample solution var yourName = "Pam"; var gender = "female"; var result; //Line 10 starts an if statement //Ne...
Make a Website: HTML Wrap with a div
<!-- Sample solution to index.html --> <!DOCTYPE html> <html> <body> <div class="nav"> ...
Codecademy: Structure the Webpage
<!--sample solution--> <html> <head> <title>Week 13 Project</title> </head> ...
Codecademy: "Unless"
#sample solution hungry = false unless hungry puts "I'm writing Ruby programs!" else puts "Time to eat!...
Codeschool Sample Solution Selecting Direct Children
$("#tours > li")
LearnStreet Sample Solution Sudoku Solver Project Method 6
function isCorrectColumn(sudoku, col) { // This method should return true if all the numbers from 1 to 9 // are present in the co...
No comments:
Post a Comment