├── .gitignore ├── 01_HTML ├── 01_HTML_Basico.html ├── 02_HTML_Listas.html ├── 03_HTML_Enlaces.html ├── 04_HTML_Tablas.html ├── 05_HTML_Imagenes.html ├── 06_HTML_Div_Span.html ├── 07_HTML_Etiquetas_Html5.html ├── 08_HTML_Formularios.html ├── 09_HTML_Formularios_Html5.html ├── README.md ├── icon │ └── iconfinder_Batman.png └── img │ ├── DOM_HTML.png │ ├── HTML5.png │ ├── Maquetacion.png │ └── batman.jpg ├── 02_CSS ├── 01_CSS_Basico.html ├── 02_CSS_Selectores_01.html ├── 03_CSS_Colores_Imagenes.html ├── 04_CSS_Herencia.html ├── 05_CSS_Unidades.html ├── 06_CSS_PropiedadesTexto.html ├── 07_CSS_PropiedadesTextoAlineacion.html ├── 08_CSS_PropiedadesContenedor.html ├── 09_CSS_PropiedadesListas.html ├── 10_CSS_Margenes.html ├── 11_CSS_Padding.html ├── 12_CSS_BoxModel.html ├── 13_CSS_Posicionamiento.html ├── 14_CSS_PosicionamientoFijado.html ├── 15_CSS_Display.html ├── 16_CSS_DimensionesMinimas.html ├── 17_CSS_Overflow.html ├── 18_CSS_Z-Index.html ├── 19_CSS_Float.html ├── 20_CSS_Clear.html ├── 21_CSS_HTML5.html ├── 22_CSS_SombrasRedondeados.html ├── 23_CSS_Degradados.html ├── 24_CSS_Pseudoclases.html ├── 25_CSS_Pseudoelementos.html ├── 26_CSS_RD_MediaQueries.html ├── 27_CSS_RD_HTML5.html ├── README.md ├── css │ ├── 01_Basico.css │ └── 02_Selectores.css └── img │ ├── HTML5_Responsive_Design.png │ ├── boxmodel.png │ ├── css.png │ ├── portrait_and_landscape.png │ └── posicionamiento_relativo.png ├── 03_XML ├── 01_XML_Persona.xml ├── 02_XML_Pelicula.xml ├── 03_XML_MarcaDeCoche.xml ├── 04_XML_Ordenador.xml ├── 05_XML_Empresa.xml ├── README.md └── img │ ├── logo_xml.png │ ├── nodos_pelicula.png │ └── xml1.jpg ├── 04_JSON ├── 01_JSON.json ├── 02_JSON_Pelicula.json ├── README.md └── img │ └── json_logo.png ├── 05_DTD ├── 01_DTD_Pelicula.dtd ├── 01_DTD_Pelicula.xml ├── 01_DTD_PeliculaDTDExterno.xml ├── 02_DTD_Empresa.xml ├── 03_DTD_GruposMusica.xml ├── 04_DTD_LCK.xml ├── 05_DTD_RealMadrid.xml ├── README.md └── img │ └── Validar_XML.jpg ├── 06_XSD ├── 01_XSD_Persona.xml ├── 01_XSD_Persona.xsd ├── 02_XSD_Pelicula.xml ├── 02_XSD_Pelicula.xsd ├── 03_XSD_Libro.xsd ├── 03_XSD_Libro_01.xml ├── 03_XSD_Libro_02.xml ├── 04_XSD_Restricciones.xml ├── 04_XSD_Restricciones.xsd ├── 05_XSD_ExpresionesRegulares.xml ├── 05_XSD_ExpresionesRegulares.xsd ├── README.md └── img │ └── Validar_XML.jpg ├── 07_XPATH ├── 01_XPATH_Pelicula.xml ├── 02_XPATH_Cruceros.xml ├── README.md └── img │ ├── objetosCrucero.png │ └── xpath.png ├── 08_XSLT ├── 01_XSLT_Cruceros.xml ├── 01_XSLT_Cruceros_01.xsl ├── 01_XSLT_Cruceros_02.xsl ├── 02_XSLT_Productos.xml ├── 02_XSLT_Productos.xsl ├── README.md ├── css │ └── estilos.css └── img │ └── xslt.png ├── 09_XML_CSS ├── 01_XSLT_Cursos.xml ├── 02_XSLT_Cruceros.xml ├── README.md └── css │ ├── cruceros.css │ └── cursos.css ├── README.md ├── WsLMSGI.code-workspace └── img ├── extensiones.png ├── lmsgi.jpg └── settingsjson.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/.gitignore -------------------------------------------------------------------------------- /01_HTML/01_HTML_Basico.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/01_HTML_Basico.html -------------------------------------------------------------------------------- /01_HTML/02_HTML_Listas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/02_HTML_Listas.html -------------------------------------------------------------------------------- /01_HTML/03_HTML_Enlaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/03_HTML_Enlaces.html -------------------------------------------------------------------------------- /01_HTML/04_HTML_Tablas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/04_HTML_Tablas.html -------------------------------------------------------------------------------- /01_HTML/05_HTML_Imagenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/05_HTML_Imagenes.html -------------------------------------------------------------------------------- /01_HTML/06_HTML_Div_Span.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/06_HTML_Div_Span.html -------------------------------------------------------------------------------- /01_HTML/07_HTML_Etiquetas_Html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/07_HTML_Etiquetas_Html5.html -------------------------------------------------------------------------------- /01_HTML/08_HTML_Formularios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/08_HTML_Formularios.html -------------------------------------------------------------------------------- /01_HTML/09_HTML_Formularios_Html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/09_HTML_Formularios_Html5.html -------------------------------------------------------------------------------- /01_HTML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/README.md -------------------------------------------------------------------------------- /01_HTML/icon/iconfinder_Batman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/icon/iconfinder_Batman.png -------------------------------------------------------------------------------- /01_HTML/img/DOM_HTML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/img/DOM_HTML.png -------------------------------------------------------------------------------- /01_HTML/img/HTML5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/img/HTML5.png -------------------------------------------------------------------------------- /01_HTML/img/Maquetacion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/img/Maquetacion.png -------------------------------------------------------------------------------- /01_HTML/img/batman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/01_HTML/img/batman.jpg -------------------------------------------------------------------------------- /02_CSS/01_CSS_Basico.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/01_CSS_Basico.html -------------------------------------------------------------------------------- /02_CSS/02_CSS_Selectores_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/02_CSS_Selectores_01.html -------------------------------------------------------------------------------- /02_CSS/03_CSS_Colores_Imagenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/03_CSS_Colores_Imagenes.html -------------------------------------------------------------------------------- /02_CSS/04_CSS_Herencia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/04_CSS_Herencia.html -------------------------------------------------------------------------------- /02_CSS/05_CSS_Unidades.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/05_CSS_Unidades.html -------------------------------------------------------------------------------- /02_CSS/06_CSS_PropiedadesTexto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/06_CSS_PropiedadesTexto.html -------------------------------------------------------------------------------- /02_CSS/07_CSS_PropiedadesTextoAlineacion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/07_CSS_PropiedadesTextoAlineacion.html -------------------------------------------------------------------------------- /02_CSS/08_CSS_PropiedadesContenedor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/08_CSS_PropiedadesContenedor.html -------------------------------------------------------------------------------- /02_CSS/09_CSS_PropiedadesListas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/09_CSS_PropiedadesListas.html -------------------------------------------------------------------------------- /02_CSS/10_CSS_Margenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/10_CSS_Margenes.html -------------------------------------------------------------------------------- /02_CSS/11_CSS_Padding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/11_CSS_Padding.html -------------------------------------------------------------------------------- /02_CSS/12_CSS_BoxModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/12_CSS_BoxModel.html -------------------------------------------------------------------------------- /02_CSS/13_CSS_Posicionamiento.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/13_CSS_Posicionamiento.html -------------------------------------------------------------------------------- /02_CSS/14_CSS_PosicionamientoFijado.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/14_CSS_PosicionamientoFijado.html -------------------------------------------------------------------------------- /02_CSS/15_CSS_Display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/15_CSS_Display.html -------------------------------------------------------------------------------- /02_CSS/16_CSS_DimensionesMinimas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/16_CSS_DimensionesMinimas.html -------------------------------------------------------------------------------- /02_CSS/17_CSS_Overflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/17_CSS_Overflow.html -------------------------------------------------------------------------------- /02_CSS/18_CSS_Z-Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/18_CSS_Z-Index.html -------------------------------------------------------------------------------- /02_CSS/19_CSS_Float.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/19_CSS_Float.html -------------------------------------------------------------------------------- /02_CSS/20_CSS_Clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/20_CSS_Clear.html -------------------------------------------------------------------------------- /02_CSS/21_CSS_HTML5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/21_CSS_HTML5.html -------------------------------------------------------------------------------- /02_CSS/22_CSS_SombrasRedondeados.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/22_CSS_SombrasRedondeados.html -------------------------------------------------------------------------------- /02_CSS/23_CSS_Degradados.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/23_CSS_Degradados.html -------------------------------------------------------------------------------- /02_CSS/24_CSS_Pseudoclases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/24_CSS_Pseudoclases.html -------------------------------------------------------------------------------- /02_CSS/25_CSS_Pseudoelementos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/25_CSS_Pseudoelementos.html -------------------------------------------------------------------------------- /02_CSS/26_CSS_RD_MediaQueries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/26_CSS_RD_MediaQueries.html -------------------------------------------------------------------------------- /02_CSS/27_CSS_RD_HTML5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/27_CSS_RD_HTML5.html -------------------------------------------------------------------------------- /02_CSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/README.md -------------------------------------------------------------------------------- /02_CSS/css/01_Basico.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/css/01_Basico.css -------------------------------------------------------------------------------- /02_CSS/css/02_Selectores.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/css/02_Selectores.css -------------------------------------------------------------------------------- /02_CSS/img/HTML5_Responsive_Design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/img/HTML5_Responsive_Design.png -------------------------------------------------------------------------------- /02_CSS/img/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/img/boxmodel.png -------------------------------------------------------------------------------- /02_CSS/img/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/img/css.png -------------------------------------------------------------------------------- /02_CSS/img/portrait_and_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/img/portrait_and_landscape.png -------------------------------------------------------------------------------- /02_CSS/img/posicionamiento_relativo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/02_CSS/img/posicionamiento_relativo.png -------------------------------------------------------------------------------- /03_XML/01_XML_Persona.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/01_XML_Persona.xml -------------------------------------------------------------------------------- /03_XML/02_XML_Pelicula.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/02_XML_Pelicula.xml -------------------------------------------------------------------------------- /03_XML/03_XML_MarcaDeCoche.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/03_XML_MarcaDeCoche.xml -------------------------------------------------------------------------------- /03_XML/04_XML_Ordenador.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/04_XML_Ordenador.xml -------------------------------------------------------------------------------- /03_XML/05_XML_Empresa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/05_XML_Empresa.xml -------------------------------------------------------------------------------- /03_XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/README.md -------------------------------------------------------------------------------- /03_XML/img/logo_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/img/logo_xml.png -------------------------------------------------------------------------------- /03_XML/img/nodos_pelicula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/img/nodos_pelicula.png -------------------------------------------------------------------------------- /03_XML/img/xml1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/03_XML/img/xml1.jpg -------------------------------------------------------------------------------- /04_JSON/01_JSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/04_JSON/01_JSON.json -------------------------------------------------------------------------------- /04_JSON/02_JSON_Pelicula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/04_JSON/02_JSON_Pelicula.json -------------------------------------------------------------------------------- /04_JSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/04_JSON/README.md -------------------------------------------------------------------------------- /04_JSON/img/json_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/04_JSON/img/json_logo.png -------------------------------------------------------------------------------- /05_DTD/01_DTD_Pelicula.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/01_DTD_Pelicula.dtd -------------------------------------------------------------------------------- /05_DTD/01_DTD_Pelicula.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/01_DTD_Pelicula.xml -------------------------------------------------------------------------------- /05_DTD/01_DTD_PeliculaDTDExterno.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/01_DTD_PeliculaDTDExterno.xml -------------------------------------------------------------------------------- /05_DTD/02_DTD_Empresa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/02_DTD_Empresa.xml -------------------------------------------------------------------------------- /05_DTD/03_DTD_GruposMusica.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/03_DTD_GruposMusica.xml -------------------------------------------------------------------------------- /05_DTD/04_DTD_LCK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/04_DTD_LCK.xml -------------------------------------------------------------------------------- /05_DTD/05_DTD_RealMadrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/05_DTD_RealMadrid.xml -------------------------------------------------------------------------------- /05_DTD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/README.md -------------------------------------------------------------------------------- /05_DTD/img/Validar_XML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/05_DTD/img/Validar_XML.jpg -------------------------------------------------------------------------------- /06_XSD/01_XSD_Persona.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/01_XSD_Persona.xml -------------------------------------------------------------------------------- /06_XSD/01_XSD_Persona.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/01_XSD_Persona.xsd -------------------------------------------------------------------------------- /06_XSD/02_XSD_Pelicula.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/02_XSD_Pelicula.xml -------------------------------------------------------------------------------- /06_XSD/02_XSD_Pelicula.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/02_XSD_Pelicula.xsd -------------------------------------------------------------------------------- /06_XSD/03_XSD_Libro.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/03_XSD_Libro.xsd -------------------------------------------------------------------------------- /06_XSD/03_XSD_Libro_01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/03_XSD_Libro_01.xml -------------------------------------------------------------------------------- /06_XSD/03_XSD_Libro_02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/03_XSD_Libro_02.xml -------------------------------------------------------------------------------- /06_XSD/04_XSD_Restricciones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/04_XSD_Restricciones.xml -------------------------------------------------------------------------------- /06_XSD/04_XSD_Restricciones.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/04_XSD_Restricciones.xsd -------------------------------------------------------------------------------- /06_XSD/05_XSD_ExpresionesRegulares.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/05_XSD_ExpresionesRegulares.xml -------------------------------------------------------------------------------- /06_XSD/05_XSD_ExpresionesRegulares.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/05_XSD_ExpresionesRegulares.xsd -------------------------------------------------------------------------------- /06_XSD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/README.md -------------------------------------------------------------------------------- /06_XSD/img/Validar_XML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/06_XSD/img/Validar_XML.jpg -------------------------------------------------------------------------------- /07_XPATH/01_XPATH_Pelicula.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/07_XPATH/01_XPATH_Pelicula.xml -------------------------------------------------------------------------------- /07_XPATH/02_XPATH_Cruceros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/07_XPATH/02_XPATH_Cruceros.xml -------------------------------------------------------------------------------- /07_XPATH/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/07_XPATH/README.md -------------------------------------------------------------------------------- /07_XPATH/img/objetosCrucero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/07_XPATH/img/objetosCrucero.png -------------------------------------------------------------------------------- /07_XPATH/img/xpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/07_XPATH/img/xpath.png -------------------------------------------------------------------------------- /08_XSLT/01_XSLT_Cruceros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/01_XSLT_Cruceros.xml -------------------------------------------------------------------------------- /08_XSLT/01_XSLT_Cruceros_01.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/01_XSLT_Cruceros_01.xsl -------------------------------------------------------------------------------- /08_XSLT/01_XSLT_Cruceros_02.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/01_XSLT_Cruceros_02.xsl -------------------------------------------------------------------------------- /08_XSLT/02_XSLT_Productos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/02_XSLT_Productos.xml -------------------------------------------------------------------------------- /08_XSLT/02_XSLT_Productos.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/02_XSLT_Productos.xsl -------------------------------------------------------------------------------- /08_XSLT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/README.md -------------------------------------------------------------------------------- /08_XSLT/css/estilos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/css/estilos.css -------------------------------------------------------------------------------- /08_XSLT/img/xslt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/08_XSLT/img/xslt.png -------------------------------------------------------------------------------- /09_XML_CSS/01_XSLT_Cursos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/09_XML_CSS/01_XSLT_Cursos.xml -------------------------------------------------------------------------------- /09_XML_CSS/02_XSLT_Cruceros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/09_XML_CSS/02_XSLT_Cruceros.xml -------------------------------------------------------------------------------- /09_XML_CSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/09_XML_CSS/README.md -------------------------------------------------------------------------------- /09_XML_CSS/css/cruceros.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/09_XML_CSS/css/cruceros.css -------------------------------------------------------------------------------- /09_XML_CSS/css/cursos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/09_XML_CSS/css/cursos.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/README.md -------------------------------------------------------------------------------- /WsLMSGI.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/WsLMSGI.code-workspace -------------------------------------------------------------------------------- /img/extensiones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/img/extensiones.png -------------------------------------------------------------------------------- /img/lmsgi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/img/lmsgi.jpg -------------------------------------------------------------------------------- /img/settingsjson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdepablo/WsLMSGI/HEAD/img/settingsjson.png --------------------------------------------------------------------------------