/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

<!DOCTYPE html>
<html lang="es">
  <head>
    <meta charset="utf-8">
    <meta name="description" content="Contenido">
    <meta name="keywords" content="key1, key2">
    <meta name="author" content="Adan Perez">
    <link href="favicon.ico" type="image/x-icon" rel="shortcut icon">
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <title>Título de la página</title>
    <link rel="stylesheet" href="style.css">   
    <script src="script.js"></script>
  </head>
  <body>
    contenido visible de la página
  </body>
</html>