Files
LMSGI-2024-25/Unidad_05_Javascript/ejercicios/bloque01/ejercicio06.html
2025-02-24 14:06:10 +01:00

20 lines
695 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script>
function cambiarTamanio(factor) {
let parrafo = document.getElementById("texto");
let tamañoActual = window.getComputedStyle(parrafo).fontSize;
let nuevoTamaño = parseFloat(tamañoActual) + factor;
parrafo.style.fontSize = nuevoTamaño + "px";
}
</script>
</head>
<body>
<p id="texto" style="font-size: 16px;">Este es un texto con tamaño ajustable.</p>
<button onclick="cambiarTamanio(2)">Aumentar tamaño</button>
<button onclick="cambiarTamanio(-2)">Disminuir tamaño</button>
</body>
</html>