lawrencedeerclub/index.html
2024-11-26 20:41:37 -06:00

25 lines
533 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lawrence Deer Club</title>
<style>
body * {
text-align: center;
}
#links a {
padding: 2em;
}
</style>
</head>
<body>
<p id="welcome">welcome to the</p>
<h1>Lawrence Deer Club</h1>
<div id="links">
<a href="/map.html">map</a>
<a href="/trailcams">trail cams</a>
</div>
</body>
</html>