summaryrefslogtreecommitdiffstats
path: root/test/example-website/index.html
blob: 735ae733c7895fca226a787e42df9c6dd1337c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Example Website - Deploy Test</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>
        <nav>
            <h1>Deploy Test</h1>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="about.html">About</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section class="hero">
            <h2>Welcome to the Example Website</h2>
            <p>This is a simple static website for testing the deploy tool.</p>
        </section>

        <section class="features">
            <div class="feature">
                <h3>Fast Deployment</h3>
                <p>Deploy your static sites in seconds with a single command.</p>
            </div>
            <div class="feature">
                <h3>HTTPS Enabled</h3>
                <p>Automatic SSL certificates with Caddy.</p>
            </div>
            <div class="feature">
                <h3>Simple Management</h3>
                <p>Easy-to-use CLI for managing your deployments.</p>
            </div>
        </section>
    </main>

    <footer>
        <p>&copy; 2025 Deploy Test. Built for testing purposes.</p>
    </footer>
</body>
</html>