Dashboard Temp Share Shortlinks Frames API

HTMLify

features.html
Views: 39 | Author: karbonsites
  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
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Features - GradeGenius AI</title>
    <link rel="stylesheet" href="./style.css">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
    <header class="header">
        <div class="container nav-container">
            <div class="logo">GradeGenius<span class="logo-accent">AI</span></div>
            <nav class="nav">
                <a href="index.html" class="nav-link">Home</a>
                <a href="features.html" class="nav-link active">Features</a>
                <a href="pricing.html" class="nav-link">Pricing</a>
                <a href="contact.html" class="nav-link btn-cta-nav">Get Started</a>
            </nav>
            <button class="menu-toggle" aria-label="Toggle navigation">
                &#9776;
            </button>
        </div>
    </header>

    <main>
        <section class="page-header">
            <div class="container">
                <h1 class="fade-in-up">Core Capabilities</h1>
                <p class="fade-in-up delay-1">Powering the next generation of objective assessment.</p>
            </div>
        </section>

        <section class="features-detail-section">
            <div class="container">
                <div class="feature-card fade-in-scroll">
                    <div class="feature-icon">1</div>
                    <div class="feature-content">
                        <h3>Semantic Grading Engine</h3>
                        <p>Our proprietary LLM analyzes context, argument structure, and originality, moving far beyond simple keyword matching. It understands nuance.</p>
                    </div>
                </div>

                <div class="feature-card right fade-in-scroll">
                    <div class="feature-icon">2</div>
                    <div class="feature-content">
                        <h3>Code Evaluation Module</h3>
                        <p>Upload programming assignments (Python, Java, JS) and receive syntax checks, efficiency reports, and functional correctness scores instantly.</p>
                    </div>
                </div>

                <div class="feature-card fade-in-scroll">
                    <div class="feature-icon">3</div>
                    <div class="feature-content">
                        <h3>Plagiarism & AI Detection Suite</h3>
                        <p>Cross-reference submissions against billions of sources and detect patterns indicative of AI-generated content with high confidence levels.</p>
                    </div>
                </div>

                <div class="feature-card right fade-in-scroll">
                    <div class="feature-icon">4</div>
                    <div class="feature-content">
                        <h3>Custom Rubric Integration</h3>
                        <p>Easily map your existing grading rubrics directly into the AI framework for personalized, standards-aligned scoring.</p>
                    </div>
                </div>
            </div>
        </section>

        <section id="demo" class="cta-banner">
            <div class="container">
                <h2>Ready to see the precision?</h2>
                <p>Schedule a personalized, live demonstration with our specialists.</p>
                <a href="contact.html" class="btn btn-primary large-btn">Book Your Free Demo</a>
            </div>
        </section>
    </main>

    <footer class="footer">
        <div class="container footer-grid">
            <div class="footer-col">
                <h4>GradeGeniusAI</h4>
                <p>The benchmark for automated assessment.</p>
            </div>
            <div class="footer-col">
                <h4>Quick Links</h4>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="features.html">Features</a></li>
                    <li><a href="pricing.html">Pricing</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>Legal</h4>
                <ul>
                    <li><a href="#">Privacy Policy</a></li>
                    <li><a href="#">Terms of Service</a></li>
                </ul>
            </div>
            <div class="footer-col contact-col">
                <h4>Connect</h4>
                <p>Email: support@gradegenius.ai</p>
            </div>
        </div>
        <div class="copyright">
            &copy; 2024 GradeGeniusAI. All rights reserved.
        </div>
    </footer>

    <script src="./script.js"></script>
</body>
</html>