Files
Visit-counter/definer.html
2021-11-24 00:58:07 -03:00

20 lines
689 B
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styleDefiner.css">
<link rel="stylesheet" href="./normalize.css">
<title>Generar visitas</title>
</head>
<body>
<header>
<h1>Generación de visitas</h1>
</header>
<form method="POST" action="definer.php">
<input name="visitas" type="number" class="input-visitas" required min="0" max="9999" >
<input name="submit" type="submit" class="input-submit" value="Enviar">
</form>
</body>
</html>