39 lines
898 B
HTML
39 lines
898 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Stortissvatnet!</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f9f9f9;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
}
|
|
.container {
|
|
max-width: 400px;
|
|
}
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 8px;
|
|
}
|
|
p {
|
|
margin-top: 10px;
|
|
font-size: 16px;
|
|
color: #555;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<img src="image.png" alt="Placeholder Image">
|
|
<p>Stortissvatnet er en liten innsjø i Lierne kommune i Trøndelag. Det har utløp til <a href="https://tissvasselva.no">Tissvasselva</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|