Skip to content

Instantly share code, notes, and snippets.

View hmiraglio's full-sized avatar

Hernán Miraglio hmiraglio

  • Buenos Aires, Argentina
View GitHub Profile
@hmiraglio
hmiraglio / js
Last active September 29, 2020 19:27
js-introduction-01
```JavaScript
// Cadenas
let simple = '¿Quién se ha llevado mi sobrero?';
let doble = "¿Quién se ha llevado mi sobrero?";
// Números
let entero = 6;
let decimal = 4.99;
let hexadecimal = 0xff;
let octal = 0o361;
@hmiraglio
hmiraglio / css-selectors.md
Created September 14, 2020 02:19 — forked from magicznyleszek/css-selectors.md
CSS Selectors Cheatsheet

CSS Selectors Cheatsheet

Element selectors

Element -- selects all h2 elements on the page

h2 {
    foo: bar;