miércoles, 23 de noviembre de 2016

Cambiar el estilo con js

<html>

<head>
<title>Javascript</title>
</head>

<body>

<p id="moreText">This is some text</p>
<button id="styleText">Style Text</button>
<script type="text/javascript">

document.getElementById("styleText").onclick = function() {
document.getElementById("moreText").style.fontsize = "50px";
}
</script>
</body>

</html>

No hay comentarios:

Publicar un comentario