summaryrefslogtreecommitdiffstats
path: root/test/example-website/index.html
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2025-12-28 09:21:08 -0800
committerbndw <ben@bdw.to>2025-12-28 09:21:08 -0800
commit13c2f9cffa624fdf498f3b61fab9d809b92e026e (patch)
tree4b25205ccd05e9e887376c10edb2f4069ea1d9d4 /test/example-website/index.html
init
Diffstat (limited to 'test/example-website/index.html')
-rw-r--r--test/example-website/index.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/test/example-website/index.html b/test/example-website/index.html
new file mode 100644
index 0000000..735ae73
--- /dev/null
+++ b/test/example-website/index.html
@@ -0,0 +1,46 @@
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Example Website - Deploy Test</title>
7 <link rel="stylesheet" href="style.css">
8</head>
9<body>
10 <header>
11 <nav>
12 <h1>Deploy Test</h1>
13 <ul>
14 <li><a href="index.html">Home</a></li>
15 <li><a href="about.html">About</a></li>
16 </ul>
17 </nav>
18 </header>
19
20 <main>
21 <section class="hero">
22 <h2>Welcome to the Example Website</h2>
23 <p>This is a simple static website for testing the deploy tool.</p>
24 </section>
25
26 <section class="features">
27 <div class="feature">
28 <h3>Fast Deployment</h3>
29 <p>Deploy your static sites in seconds with a single command.</p>
30 </div>
31 <div class="feature">
32 <h3>HTTPS Enabled</h3>
33 <p>Automatic SSL certificates with Caddy.</p>
34 </div>
35 <div class="feature">
36 <h3>Simple Management</h3>
37 <p>Easy-to-use CLI for managing your deployments.</p>
38 </div>
39 </section>
40 </main>
41
42 <footer>
43 <p>&copy; 2025 Deploy Test. Built for testing purposes.</p>
44 </footer>
45</body>
46</html>