node-basic-site/index.html
2023-08-24 15:47:06 -07:00

20 lines
463 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index</title>
</head>
<body>
<br />
<center>
<header class="d-flex flex-row w-100">
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/contact-me">Contact Me</a>
</header>
<br />
Welcome to the home page!
</center>
</body>
</html>