Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Thursday, December 20, 2012
Codecademy Sample Solution: Projects Color It In
div {
height: 80px;
width: 150px;
border: 4px solid black;
border-radius: 15px;
background-color: yellow;
color: black;
font-family: impact;
font-size: 30px;
text-align: center;
padding: 10px;
}
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
Codecademy Sample Solution: Codeyear Anchors Away
<style> p { font-family: sans-serif; font-size:18px;} div#welcome p{ font-family: cursive; font-size: 24px; color: white; b...
Codecademy Sample Solution: Codeyear What is class to id?
<style> #content p {color: yellow;} p {color: purple;} p {color: green;} </style> <div id="content...
Codecademy: "E-I-E-I-O"
#sample solution pyg = 'ay' original = raw_input('Enter a word:') if len(original) > 0 and original.isalpha(): p...
Codecademy: Sample Solution to "Getting Pickyer"
//Sample solution to script.js $('document').ready(function() { $('#emptyTrash').click(function() { //remove the elemen...
LearnStreet Python Lesson 9 Exercise 8
#sample solution def run(bottle): #your code here bottle.drink(250) bottle.refill(150) return bottle.amount_left cl...
Codeyear: Creating an array with recursion
//sample solution // Here is the array we will store results in var multiples = []; function multiplesOf(base, i) { // Base case ...
Codecademy: Sample solution to "Move, element, get out the way"
//Sample solution to script.js $('document').ready(function() { $('#changeButton').click(function() { //note: //the di...
Codecademy About You Exercises 1 to 4
<!-- sample solutions to Welcome to HTML! --> <h1>Bruce Wayne</h1> <!-- sample solutions to Speak in Paragraphs --> ...
Codecademy Using Documentation 7/8
// Sample Solution using System; namespace DocumentationHunt { class Program { static void Main(string[] args) { ...
LearnStreet Python Lesson 5 Exercise 7
#sample solution def run(): """ print each letter in the string using the for loop syntax and then return the la...
No comments:
Post a Comment