gitextract_570ape97/ ├── 01 - INTRO/ │ ├── README.md │ ├── practicas/ │ │ ├── 1.-Reqierimientos.doc │ │ ├── 1.-requerimientos.md │ │ ├── 2.-buyerPersona.md │ │ ├── 3.-publicoObjetivo.md │ │ ├── 4.-wireframe.md │ │ ├── 5.-ui.md │ │ └── README.md │ └── temario/ │ ├── 1.-queEsFrontEnd.md │ ├── 2.-frontEndTecs.md │ ├── 3.-webDevSetup.md │ ├── 4.-estructuraWeb.md │ └── 5.-estructuraCodigo.md ├── 02 - HTML/ │ ├── README.md │ ├── practicas/ │ │ └── README.md │ ├── programas/ │ │ ├── 1.-etiquetasBasicas.html │ │ ├── 2.-elementosCompuestos.html │ │ ├── 3.-layoutYRutas.html │ │ └── atributosHTML.xlsx │ └── temario/ │ ├── 1.-queEsHMTL.md │ ├── 2.-etiquetasBasicas.md │ ├── 3.-elementosCompuestos.md │ ├── 4.-acomodoNavegacion.md │ └── 5.-propiedades.md ├── 03 - CSS/ │ ├── README.md │ ├── practica/ │ │ └── README.md │ └── programas/ │ ├── 1.-selectores.html │ ├── 2.-colores.css │ ├── 2.-colores.html │ ├── 3.-fondos.css │ ├── 3.-fondos.html │ ├── 4.-textos.css │ └── 4.-textos.html ├── 04 - JS/ │ ├── README.md │ ├── practica/ │ │ └── README.md │ └── programas/ │ ├── 1.-intro.html │ ├── 1.-intro.js │ ├── 2.-funciones.html │ ├── 2.-funciones.js │ ├── 3.-navegador.html │ ├── 3.-navegador.js │ ├── 4.-pokedex.html │ └── 4.-pokedex.js ├── 05 - VUEJS/ │ ├── README.md │ ├── practica/ │ │ └── README.md │ └── programas/ │ ├── CDN/ │ │ ├── app.js │ │ ├── index.html │ │ └── style.css │ ├── CLI/ │ │ ├── App.vue │ │ ├── components/ │ │ │ └── HelloWorld.vue │ │ └── main.js │ └── VUEX/ │ ├── App.vue │ ├── components/ │ │ ├── Botones.vue │ │ ├── ColorCode.vue │ │ ├── ContadorCuadrado.vue │ │ └── Counter.vue │ ├── main.js │ ├── router/ │ │ └── index.js │ ├── store/ │ │ └── index.js │ └── views/ │ ├── AboutView.vue │ └── HomeView.vue ├── 06 - VUEX/ │ └── vuex.md ├── 07 - ANGULAR/ │ └── angular.md ├── 08 - AZURE/ │ └── azure.md └── README.md