26 lines
550 B
HTML
26 lines
550 B
HTML
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta name="" charset="UTF-8" content="">
|
||
|
<style>
|
||
|
* {
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<script src="./12.js"></script>
|
||
|
<h1>Repetidor basado en número de letras</h1>
|
||
|
<form>
|
||
|
<!-- <select id="opciones"> -->
|
||
|
<!-- <option value="HOR">Horizontal</option> -->
|
||
|
<!-- <option value="VER">Vertical</option> -->
|
||
|
<!-- </select> -->
|
||
|
<input type="text" id="numeroDeLetras" name="" value="">
|
||
|
<input type="submit" name="" onclick="main()" value="Mostrar">
|
||
|
</form>
|
||
|
</body>
|
||
|
|
||
|
</html>
|