This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Lesson 6: Aplicando las herramientas conocidas en el tutorial</title> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="5to Desarrollo de Software: Lesson 6 Tutorila"> | |
</head> | |
<body> | |
<div id="section6" class="section"> | |
<h2>Exercise: Tree Walker</h2> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<meta charset="UTF-8"> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="5to Desarrollo de Software"> | |
</head> | |
<body> | |
<div align="center"> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Quick Start - Leaflet</title> | |
<meta charset="utf-8" /> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
This file contains hidden or 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
function PasarParametro(disponible,seleccionados){ | |
var obj = document.getElementById('disponible'); | |
if(obj.selectedIndex == -1){ | |
alert ('Seleccione una opción'); | |
}else{ | |
var valor = obj.value; | |
var txt = obj.options[obj.selectedIndex].text; | |
obj.options[obj.selectedIndex] = null; | |
var obj2 = document.getElementById('seleccionados'); | |
var opc = new Option(txt, valor); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Taller mover elementos</title> | |
<meta charset="utf-8"> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="Pasar elementos de una lista a otra"> | |
<script src="funciones.js"></script> | |
</head> | |
<body> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<meta charset="UTF-8"> | |
<head> | |
<title>Hola mundo!</title> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="Hola mundo! Apache Tomcat"> | |
<meta name="keywords" content="HolaMundo.html"> | |
</head> | |
<body> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<title>Factorial Recursivo</title> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="Factorial de un número en función recursiva"> | |
</head> | |
<body> | |
<h2 align="center">Factorial Recursivo</h2> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Encontrar el menor número</title> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="Encontrar el menor número"> | |
</head> | |
<body> | |
<h2>Encontrar el menor número de un vector</h2> | |
</body> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Multiplicar Vectores</title> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="Multiplicar los valores de un vector"> | |
</head> | |
<body> | |
<h2>Multiplicar los valores de un vector</h2> | |
</body> |
This file contains hidden or 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
poner un vector sumar los elementos del vector | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Suma de vectores</title> | |
<meta name="author" content="Erika Ortiz"> | |
<meta name="description" content="Sumar los valores de un vector"> | |
</head> | |
<body> | |
<h2>Sumar los número de un vector</h2> |
NewerOlder