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
tag - attribute - value | |
< html lang ="en" > | |
<html lang="en"> |
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
<!-- Tags open, have content, then close --> | |
<h1> Content </h1> | |
<h1> <!-- This is an HTML tag being open --> | |
We put some content here. | |
</h1> <!-- Then we tell the browser to close that tag --> |
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
My Name | |
I love cupcakes. |
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
/* style.scss */ | |
/* This scss will create a style.css when run through a pre-processor */ | |
@import "normalize.min"; | |
@import "my-defaults"; | |
@import "icons"; | |
@import "mobile"; | |
@import "small-tablet"; | |
@import "tablet"; | |
@import "full-size"; |
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
header { | |
background-color: #e3d3d3; | |
} | |
header h1 { | |
font-size: 30px; | |
} | |
header h1 a { | |
text-decoration: none; |
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
header { | |
background-color: #e3d3d3; | |
h1 { | |
font-size: 30px; | |
a { | |
text-decoration: none; | |
} | |
} | |
} |
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
$favourite-color: #85D4E3; | |
body { | |
background-color: $favourite-color; | |
} |
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
<p>test for tabs</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
// My custom emmet shortcuts | |
{ | |
"snippets": { | |
"scss": { | |
"snippets": { | |
"mz": "margin: 0 auto;" | |
} | |
}, | |
"css": { |
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
// My custom emmet shortcuts | |
{ | |
"snippets": { | |
"file-type (eg html)": { | |
"snippets": { | |
"keys-typed": "your-shortcut" | |
} | |
} | |
} |
NewerOlder