Files
cloud-node-container/examples/simple-website/public/about.html

22 lines
647 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - My Simple Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/contact">Contact</a>
</nav>
<main>
<h1>About Us</h1>
<p>This website is powered by Node.js and Express, running in a containerized environment.</p>
<p>It demonstrates how easy it is to deploy web applications with the Cloud Node Container.</p>
</main>
</body>
</html>