This file contains 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 ref="stylesheet" type="text/css" src="style.css"> | |
<style id="jsbin-css"> | |
div { | |
width: 150px; | |
height: 150px; | |
border: 2px solid black; |
This file contains 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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>I'm awesome!</title> | |
</head> | |
<body> | |
<h1>Hi, I'm awesome.</h1> | |
<p><a href="http://twitter.com/GA">Follow me</a> on Twitter. Send me an <a href="mailto:[email protected]"> email </a>.</p> |
This file contains 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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>My First Website</title> | |
</head> | |
<body> | |
<h1>My first website!</h1> | |
<h2>by a talented student</h2> |
This file contains 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
<div class="col s12 l6 main-card"> | |
<div class="card center-align landingcard"> | |
<div class="card-image"> | |
<img class="landingimage" src="https://media.giphy.com/media/l0HlRnAWXxn0MhKLK/giphy.gif"> | |
</div> | |
<div class="card-content center-align"> | |
<p>Get a rad GIF instantly!</p> | |
<input placeholder="What are you searching for?" id="key_word" type="text" class="validate"> | |
<a href="#modal1" id="instagif" class="waves-effect waves-purple btn-large btn">INSTAGIF</a> | |
</div> |
This file contains 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 SNAKE BODY FOR MATCHES WITH SNAKE HEAD | |
function checkSnake () { | |
for (var i = 1; i<snake.length; i++) { | |
if (_.isEqual(snake[0], snake[i])) { | |
return true; | |
console.log("totally f'ed") | |
} | |
} | |
return false; | |
} |
This file contains 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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
This file contains 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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
This file contains 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
<!-- Copy over your previous HTML code below--> | |
<html> | |
<head> | |
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,800" rel="stylesheet" type="text/css"> | |
<title></title> | |
<style id="jsbin-css"> | |
body { | |
font-size: 18px; | |
font-family: "Open Sans"; | |
} |
This file contains 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
<!-- Copy over your previous HTML code below--> | |
<html> | |
<head> | |
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,800" rel="stylesheet" type="text/css"> | |
<title></title> | |
<style id="jsbin-css"> | |
/*Copy over your previous HTML code below | |
*/ | |
body { | |
font-size: 18px; |
NewerOlder