Created
July 13, 2022 21:59
-
-
Save Nick-Gabe/8d59fd264f3c4574b568076107103ef0 to your computer and use it in GitHub Desktop.
Roadmap feito por mim, uma rota básica que fiz pra quem quiser iniciar pelo Front End
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
const HTML = [ | |
- estrutura de uma tag | |
- o que é head e body | |
- tags da head (meta, link, title... ) | |
- cabeçalhos | |
- tags básicas (p, div, span, a, b, i, u, img) | |
- tag de estilo e script | |
- listas | |
- tabelas | |
- formulários e inputs | |
- semântica | |
- acessibilidade | |
- ademais tags | |
] | |
const CSS = [ | |
- box-model | |
- seletores css | |
- largura, altura, padding, border e margin | |
- cores e background | |
- pseudo-classes (hover, selected...) | |
- fontes | |
- posições | |
- displays | |
- flex | |
- grid | |
- media queries e responsividade | |
- transições | |
- animações | |
- pseudo-elementos | |
- vai estudando, o resto de css tu pega enquanto pratica | |
] | |
const JAVASCRIPT = [ | |
- variáveis | |
- tipos | |
- verificações condicionais | |
- operações aritméticas | |
- loops | |
- objetos | |
- funções (e parâmetros) | |
- exports e módulos | |
- classes | |
- DOM | |
- APIs | |
] | |
// esqueci algo? comenta no gist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment