19 lines
341 B
HTML
19 lines
341 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>API Server</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial;
|
|
padding: 2em;
|
|
background: #f9f9f9;
|
|
color: #333;
|
|
}
|
|
h1 { color: #2c3e50; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>🚀 Welcome to the REST API Server 🧑🚀</h1>
|
|
</body>
|
|
</html> |