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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<div class="btn-close-container blue round base"> | |
<div class="btn-close-outer"> | |
<div class="btn-close-inner"> | |
<p class="btn-close-x">X</p> | |
</div> | |
</div> | |
</div> |
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
<div class="btn-close-container blue round base"> | |
<div class="btn-close-outer"> | |
<div class="btn-close-inner"> | |
<p class="btn-close-x">X</p> | |
</div> | |
</div> | |
</div> | |
<div class="blue-box">ss</div> |
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
<h1>Styling Links</h1> | |
<a href="#" class="box">Google.com</a><br/> |
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
<div class="box"> | |
<p>sdkfjhsd fksdjfh sdfsdf sdf</p> | |
</div> |
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
<div class="box"> | |
<p>sdkfjhsd fksdjfh sdfsdf sdf</p> | |
</div> |
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
<ul> | |
<li><span>Box1</span></li> | |
<li><span>Box1</span></li> | |
<li><span>Box1</span></li> | |
<li><span>Box1</span></li> | |
<li><span>Box1</span></li> | |
</ul> |
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
<div class="box1">equuntur magnorro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius</div> | |
<div class="box2">et voluptatemt aut fugit, sed quia consequuntt. Neque porro quissci velit, sed quia non numquam eius</div> | |
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
<button class="one">Click Here For More!</button> | |
<button class="two">Click Here For More!!</button> |
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
// Javascript Composition | |
function compose(a,b){ | |
return function(c){ | |
return a(b(c)); | |
}; | |
} | |
function addIt(num) { | |
return num + num; | |
} |
OlderNewer