https://trustnest-cloud.com/

Submitted URL:
https://trustnest-cloud.com/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 3 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>TrustNest Cloud</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <div class="container">
            <h1>TrustNest Cloud</h1>
            <nav>
                <ul>
                    <li><a href="#about">About</a></li>
                    <li><a href="#features">Features</a></li>
                    <li><a href="#benefits">Benefits</a></li>
                    <li><a href="#contact">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>
    
    <section id="about">
        <div class="container">
            <h2>About TrustNest Cloud</h2>
            <p>TrustNest Cloud is a secure, reliable, and scalable cloud solution designed to meet your business needs.</p>
            <img src="images/about.jpg" alt="About TrustNest Cloud">
        </div>
    </section>

    <section id="features">
        <div class="container">
            <h2>Features</h2>
            <div class="feature">
                <img src="images/feature1.jpg" alt="Feature 1">
                <h3>Feature 1</h3>
                <p>Description of feature 1.</p>
            </div>
            <div class="feature">
                <img src="images/feature2.jpg" alt="Feature 2">
                <h3>Feature 2</h3>
                <p>Description of feature 2.</p>
            </div>
            <div class="feature">
                <img src="images/feature3.jpg" alt="Feature 3">
                <h3>Feature 3</h3>
                <p>Description of feature 3.</p>
            </div>
        </div>
    </section>

    <section id="benefits">
        <div class="container">
            <h2>Benefits</h2>
            <ul>
                <li>Benefit 1</li>
                <li>Benefit 2</li>
                <li>Benefit 3</li>
                <li>Benefit 4</li>
            </ul>
            <img src="images/benefits.jpg" alt="Benefits">
        </div>
    </section>

    <section id="contact">
        <div class="container">
            <h2>Contact Us</h2>
            <form action="#">
                <label for="name">Name:</label>
                <input type="text" id="name" name="name" required="">

                <label for="email">Email:</label>
                <input type="email" id="email" name="email" required="">

                <label for="message">Message:</label>
                <textarea id="message" name="message" required=""></textarea>

                <button type="submit">Submit</button>
            </form>
        </div>
    </section>

    <footer>
        <div class="container">
            <p>© 2024 TrustNest Cloud. All rights reserved.</p>
        </div>
    </footer>
    
    <script src="script.js"></script>



</body></html>