ADHD Kids app

 avatar
unknown
plain_text
a month ago
2.9 kB
1
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>FocusPlay: ADHD App for Kids</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f8ff;
        }
        header {
            background-color: #6a5acd;
            color: white;
            text-align: center;
            padding: 1rem;
        }
        .container {
            margin: 20px;
        }
        .feature-card {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .feature-card h3 {
            color: #6a5acd;
        }
        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #6a5acd;
            color: white;
            border: none;
            border-radius: 5px;
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
            cursor: pointer;
        }
        .button:hover {
            background-color: #483d8b;
        }
    </style>
</head>
<body>

<header>
    <h1>FocusPlay: ADHD App for Kids</h1>
    <p>Fun, Focused, and Full of Adventure!</p>
</header>

<div class="container">
    <div class="feature-card">
        <h3>Adventure Quest</h3>
        <p>Complete daily tasks like brushing teeth or packing a backpack to earn stars and unlock cool accessories for your avatar!</p>
        <a href="#" class="button">Start Quest</a>
    </div>

    <div class="feature-card">
        <h3>Focus Arena</h3>
        <p>Play engaging focus games like memory matching and hidden object searches to improve concentration and attention span.</p>
        <a href="#" class="button">Enter Arena</a>
    </div>

    <div class="feature-card">
        <h3>Mood Forest</h3>
        <p>Track your feelings with animated emojis and grow a magical forest based on your positive emotions.</p>
        <a href="#" class="button">Visit Forest</a>
    </div>

    <div class="feature-card">
        <h3>Calm Corner</h3>
        <p>Relax with guided breathing exercises, short mindfulness games, and calming yoga poses demonstrated by fun characters.</p>
        <a href="#" class="button">Go to Calm Corner</a>
    </div>

    <div class="feature-card">
        <h3>Parent Dashboard</h3>
        <p>Monitor progress, set daily routines, and get insights into your child's development with easy-to-read charts and reports.</p>
        <a href="#" class="button">Parent Login</a>
    </div>
</div>

</body>
</html>
Leave a Comment