13 lines
392 B
HTML
13 lines
392 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Home | A Static Site</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Hello, static site</h1>
|
||
|
<p>This is a static site with just two pages. This is the <strong>home page</strong> and the other page is an <a href="office.html">office page</a>.</p>
|
||
|
</body>
|
||
|
</html>
|