ssg/index.html

29 lines
686 B
HTML
Raw Normal View History

2023-11-25 08:12:52 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page Title</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<h1><a href="#">Page Header</a></h1>
</header>
<div class="container">
<div>
<article>
<h2 id="my-html-id">My Article Title</h2>
<p>Any HTML you please</p>
</article>
<p>Also any HTML you please, I like to put images between articles</p>
</div>
<div>
<p><a href="#my-html-id">My Article Title</a></p>
</div>
</div>
</body>
</html>