Skip to content

Instantly share code, notes, and snippets.

@pochitax
Created September 26, 2024 01:00
Show Gist options
  • Save pochitax/cc7b0f1c73939af02b6eed233cc020d2 to your computer and use it in GitHub Desktop.
Save pochitax/cc7b0f1c73939af02b6eed233cc020d2 to your computer and use it in GitHub Desktop.
Atributos meta 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>
<div class="container">
<div class="row my-5">
<div class="col-8 mx-auto text-center">
<h1 class="mb-3">La mejor chocolatería de Viña del Mar</h1>
<figure class="figure shadow bg-body-tertiary p-3">
<img class="w-100 d-block rounded" src="https://www.clarin.com/img/2016/09/05/rJgi1T2KNx_1200x0.jpg" alt="Chocolate artesanal sobre una mesa con almendra, canela y anís">
<figcaption class="figure-caption p-4">Imagen referencial del sitio de <a href="https://www.clarin.com/">Clarín.com</a>. <br>Artículo: <a href="https://www.clarin.com/entremujeres-mexico/rincon-gourmet/cocina-chocolate-artesanal-gracias-ancestral_0_H1gUwEso.html">"Cómo hacer chocolate artesanal con una receta ancestral"</a></figcaption>
</figure>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment