summaryrefslogtreecommitdiff
path: root/index.html
blob: 80e779e526fddfda35aab496e8bc8dc5f15d82c3 (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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width initial-scale=1">
        <title>Serverless Solutions</title>
        <link rel="stylesheet" type="text/css" href="style.css">
    </head>

    <body>

        <nav>
            <ul>
            <a href="#">Home</a>
            <a href="contact.html">Contact</a>
            <a href="about.html">About</a>
        </nav>
        
        <header>
            <h1>Serverless Solutions</h1>
        </header>

        <main>
            <p>Deploy fast using our state-of-the-art servers that scale well to suit your needs.</p>
            <p>Register now to get notified when we go live. First 2000 subscribers get free deployment for 6 months upto 4 vCPUs + 4 GB RAM + 25 GB SSD space</p>

            <form name="register" action="register.php" method="POST">
                <label id="email" name="email">Your email address</label><br>
                <input type="email" id="email" name="email" class="email" placeholder="username@email.tld">
                <input type="submit" class="register" value="Register">
            </form>

            <figure>
                <!-- The picture is purely for demonstration purposes and STRICTLY not for commercial use. All rights belong to OVHcloud. -->
                <img src="pic2.png" alt="server">
            </figure>
        </main>

        <footer>
            &copy; 2021 Serverless Solutions
        </footer>

    </body>

</html>