Skip to content

Instantly share code, notes, and snippets.

@pochitax
Created September 26, 2024 01:09
Show Gist options
  • Save pochitax/a55edfb89d55f696a9c0ef1b6629fe0b to your computer and use it in GitHub Desktop.
Save pochitax/a55edfb89d55f696a9c0ef1b6629fe0b to your computer and use it in GitHub Desktop.
Atributos meta en el head para SEO
<!DOCTYPE html>
<html lang="es">
<!-- CABECERA DE DATOS -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chocolatería Viñamarina</title>
<meta name="description" content="Chocolatería Viñamarina ofrece los mejores chocolates artesanales de la V Región. Ven a conocer nuestra tienda ubicada en Calle Valparaíso nº679.">
<!-- una buena descripción debe oscilar entre los 120 a 160 caracteres, incluyendo espacios y puntuaciones -->
<meta name="keywords" content="Chocolatería Viñamarina, Chocolate, Chocolate artesanal en Viña del Mar">
<meta name="author" content="Paola Véliz">
<meta name="robots" content="follow"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<!-- CONTENEDOR DE TODO EL SITIO -->
<body>
...
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment