examples/deno/public/index.html

41 lines
932 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Deno 2 Web Server</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
}
h1 {
color: #4caf50;
}
p {
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Deno 2</h1>
<p>Your Deno 2 web server is up and running!</p>
<p>
Visit the <a href="/greet">/greet</a> endpoint to see a greeting
message.
</p>
</div>
</body>
</html>