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 myDogs = [ | |
| { | |
| name: 'Henry', | |
| age: 0.5, | |
| breed: 'Aussie', | |
| food: 'kibble', | |
| toys: ['tennis ball', 'chew toy'], | |
| picture: 'http://rubyriverminiaustralianshepherds.com/wp-content/uploads/aussie-puppy-for-sale-940x412.jpg' | |
| }, | |
| { | 
  
    
      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 car = { | |
| type: "Honda Civic", | |
| location: 1, | |
| move: function(){ | |
| var prev = car.location; | |
| car.location = car.location + 1; | |
| console.log(car.type + " is moving from " + prev + " to " + car.location); | |
| } | |
| }; | 
  
    
      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 carFactory = function (type, speed) { | |
| var car = {}; | |
| car.location = 1; | |
| car.type = type; | |
| car.speed = speed; | |
| car.move = function () { | |
| var prev = car.location; | |
| car.location = car.location + 1; | 
  
    
      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
    
  
  
    
  | <body style="background-color:lightgrey"> | |
| <h1 style="color:blue">This is a heading</h1> | |
| <h1 style="color:#AA22FF">Also a heading</h1> | |
| <h1 style="color:rgb(0,255,255)">Moar!!</h1> | |
| <p style="color:red;background-color:green">This is a paragraph.</p> | |
| <img src="https://i.imgur.com/81qyN1y.jpg" style="height:100px;width:100px"> | |
| </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> | |
| </head> | |
| <body> | |
| <h1 style="font-family:verdana;color:orange;">This is a heading</h1> | |
| <p style="color:green;">This <i style="color:orange;font-size:300%">is</i> a paragraph.</p> | |
| <p style="color:green;">This <i style="font-size:300%;">is</i> a paragraph.</p> | |
| <p style="color:green;font-size:300%;text-align:center;font-family:'Times New Roman';">This is by far the most important part of the page!</p> | |
| </body> | |
| </html> | 
  
    
      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> | |
| <style> | |
| h1 { | |
| font-family: verdana; | |
| } | |
| p { | |
| color: green; | |
| } | |
| i { | 
  
    
      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> | |
| <style> | |
| h1 { | |
| font-family: verdana; | |
| } | |
| p { | |
| color: green; | |
| } | |
| i { | 
  
    
      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> | |
| <style> | |
| h1 { | |
| font-family: verdana; | |
| } | |
| p { | |
| color: green; | |
| } | |
| i { | 
  
    
      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> | |
| <style> | |
| h1 { | |
| font-family: verdana; | |
| } | |
| p { | |
| color: green; | |
| } | |
| .big { | 
  
    
      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 id="greeting" class="section"> | |
| <h1>Hello!</h1> | |
| <p>This content is all related!</p> | |
| <p>Nice that we can group it using a "div" tag!</p> | |
| </div> | 
OlderNewer