Good morning, I'm trying to align (center) an image, but I can not get it.
What am I doing wrong?
var imagen =document.createElement("img");
imagen.src="ejemplo.jpg";
imagen.width="500";
imagen.height="300";
imagen.align="middle";
document.body.appendChild(imagen);
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script src="Ejemplo1_ext.js"></script>
</body>
</html>