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
var obj1 = { | |
hello: function() { | |
console.log('Hello world'); | |
return this; | |
}, | |
obj2: { | |
breed: 'dog', | |
speak: function(){ | |
console.log('woof!'); | |
return this; |
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="cover"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-6 col-md-offset-6 welcome"> | |
<h2>Your title</h2> | |
<p class="lead">This text is on the right side of the page</p> | |
</div><!-- .col --> | |
</div><!-- .row --> | |
</div><!-- .container --> | |
</div><!-- .cover --> |
NewerOlder