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
SASS makes writing CSS beautiful. |
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
# here's a simple example of driving your design using tests. | |
# by running this code and solving the failing tests one by one | |
# you should be able to finish this challenge easily. | |
# ask for help if you get stuck. | |
# consider all the questions (Q:) as you encounter them | |
# in this universe ... | |
# - people own pets | |
# - pets eat and walk |
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> | |
<title>DOM manipulation with jQuery</title> | |
<!-- Add a link to jQuery CDN here script here --> | |
<script type="text/javascript" src="jquery_example.js"></script> | |
</head> | |
<body> |
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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<meta name="robots" content="no index" /> | |
<title>Chris Cooper</title> | |
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen"> | |
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen"> | |
</head> | |
<body> |
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"> | |
<title>Dev Bootcamp Medical Form</title> | |
</head> | |
<body> | |
<form action="#" method="POST" name="dev_bootcamp_medical_form"> | |
<fieldset> | |
<legend>Required Information</legend> |
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"> | |
<title>Dev Bootcamp Medical Form</title> | |
</head> | |
<body> | |
<form action="#" method="POST" name="dev_bootcamp_medical_form"> | |
<fieldset> | |
<legend>Required Information</legend> |
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
=begin | |
Overview | |
Create a class BoggleBoard that includes the functionality of your methods from the previous challenge. | |
To do this, take a look at the methods you've created. How can they be integrated into your BoggleBoard class? What needs to change? | |
Remember to Enter the collaboration hangout. Please turn off your video and sound. Use the chat function. | |
1) Instantiate a new board object |