mirror of
https://github.com/FranP-code/Visit-counter.git
synced 2025-10-12 23:52:54 +00:00
20 lines
689 B
HTML
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> |