GoStart/web/views/example.html

28 lines
777 B
HTML
Raw Normal View History

2024-05-15 20:28:12 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Example Route</title>
<link rel="stylesheet" href="/static/output.css" />
<link rel="icon" href="/static/img/favicon.ico" type="image/x-icon" />
</head>
<body class="text-center text-blue-400 bg-gray-800">
<header>
<h1 class="mt-8 mb-8 text-3xl font-bold text-blue-300">
This is an additional example route
</h1>
</header>
<main>
<section>
<h1 class="font-bold">Serve Static Files Like this Globe</h1>
<img src="/static/img/globe.png" alt="alternate text">
</main>
<footer>
<p>&copy; 2024 My Web App</p>
</footer>
</body>
</html>