Created
February 26, 2015 15:25
Revisions
-
tourdefran created this gist
Feb 26, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ <html> <head></head> <body> <h1>Hola, soy un h1</h1> <p>Hola, soy un p!</p> <ul> <li>yo soy un item de una lista, je</li> <li>yo también</li> <li>yo también</li> <li>yo también</li> <li>yo también</li> <li>yo también</li> </ul> <img src="http://www.articolotre.com/wp-content/uploads/2013/07/gatti1-300x300.jpg" alt="Felos" /> </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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ // ---- // Sass (v3.4.12) // Compass (v1.0.3) // ---- $font-stack: Helvetica, sans-serif; $primary-color: #333; body { font: 100% $font-stack; color: $primary-color; } 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ body { font: 100% Helvetica, sans-serif; color: #333; } 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ <html> <head></head> <body> <h1>Hola, soy un h1</h1> <p>Hola, soy un p!</p> <ul> <li>yo soy un item de una lista, je</li> <li>yo también</li> <li>yo también</li> <li>yo también</li> <li>yo también</li> <li>yo también</li> </ul> <img src="http://www.articolotre.com/wp-content/uploads/2013/07/gatti1-300x300.jpg" alt="Felos" /> </body> </html>