js-exercises/tablaDeMultiplicar/9.html

26 lines
543 B
HTML

<html>
<head>
<meta name="" charset="UTF-8" content="">
<style>
* {
text-align: center;
}
</style>
</head>
<body>
<script src="./9.js"></script>
<h1>Tabla de multiplicar</h1>
<form>
<!-- <select id="opciones"> -->
<!-- <option value="HOR">Horizontal</option> -->
<!-- <option value="VER">Vertical</option> -->
<!-- </select> -->
<!-- <input type="text" id="numeroDeImagenes" name="" value=""> -->
<input type="submit" name="" onclick="main()" value="Mostrar">
</form>
</body>
</html>