Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 16, 2021 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/7bc6c84712d77ddde8d89a1e97c833fb to your computer and use it in GitHub Desktop.
Save parzibyte/7bc6c84712d77ddde8d89a1e97c833fb to your computer and use it in GitHub Desktop.
<?php
# Incluir el contador de visitas
include_once "contar_visita.php";
?>
<!DOCTYPE html>
<html lang="en">
<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">
<title>Bienvenido a la página</title>
</head>
<body>
Hola, bienvenido a mi página web.
<br>
<a href="contacto.php">Contacto</a>
<br>
<a href="acerca_de.php">Acerca de</a>
<br>
<a href="ver_visitas.php">Ver contador de visitas</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment