website/index.html
2024-09-13 03:38:50 +00:00

71 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello, world!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is me saying hello to the world">
<meta property="og:site_name" content="My Site Name">
<meta property="og:title" content="Hello, world!">
<meta property="og:url" content="https://my-site.com/index.html">
<meta property="og:description" content="This is me saying hello to the world">
<meta property="og:image" content="https://my-site.com./images/robert-pearce-UwHN0jU_YqQ-unsplash-800w.jpg">
<meta property="og:type" content="website">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="https://my-site.com./images/robert-pearce-UwHN0jU_YqQ-unsplash-800w.jpg">
<meta property="twitter:site" content="My Site Name">
<meta property="twitter:title" content="Hello, world!">
<meta property="twitter:description" content="This is me saying hello to the world">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="canonical" href="https://my-site.com/index.html">
<link rel="alternate" href="./atom.xml" title="My Feed Title" type="application/atom+xml">
<link rel="alternate" href="./rss.xml" title="My Feed Title" type="application/rss+xml">
<link rel="stylesheet" href="./css/default.css" />
<link rel="stylesheet" href="./css/code.css" />
</head>
<body>
<header>
<h1>Hello, world!</h1>
<img
alt="A woman sitting on a bench amongst trees at the end of a boardwalk leading to a pond with mountains in the background"
src="./images/robert-pearce-UwHN0jU_YqQ-unsplash-800w.jpg"
height="300"
/>
</header>
<main>
<section>
<h2>Blog Posts</h2>
<ul>
<li>
<div><a href="./hola-mundo.html">¡Hola Mundo!</a></div>
<small>2020-09-22</small>
</li>
<li>
<div><a href="./hello-world.html">Hello, world!</a></div>
<small>2020-09-21</small>
</li>
</ul>
</section>
</main>
<script defer src="./js/script.js"></script>
</body>
</html>