top of page
Search

Karma evaluation questions

Karma Evaluation Form.

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Karma Evaluation</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            line-height: 1.6;

            margin: 20px;

            background-color: #f4f4f4;

            color: #333;

        }

        .container {

            max-width: 800px;

            margin: auto;

            background: #fff;

            padding: 30px;

            border-radius: 8px;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }

        h1 {

            text-align: center;

            color: #5a2d82; /* A shade of purple */

            margin-bottom: 30px;

        }

        .question-block {

            margin-bottom: 25px;

            padding: 15px;

            border: 1px solid #ddd;

            border-radius: 5px;

            background-color: #f9f9f9;

        }

        .question-block p {

            font-weight: bold;

            margin-bottom: 10px;

            color: #333;

        }

        .options label {

            margin-right: 20px;

            cursor: pointer;

        }

        .comments textarea {

            width: 100%;

            padding: 8px;

            margin-top: 10px;

            border: 1px solid #ccc;

            border-radius: 4px;

            box-sizing: border-box; /* Ensures padding doesn't affect total width */

            min-height: 60px;

        }

        .submit-button {

            display: block;

            width: 200px;

            margin: 30px auto 0;

            padding: 12px 20px;

            background-color: #5a2d82; /* Purple */

            color: white;

            border: none;

            border-radius: 5px;

            font-size: 18px;

            cursor: pointer;

            transition: background-color 0.3s ease;

        }

        .submit-button:hover {

            background-color: #422161; /* Darker purple on hover */

        }

        .footer-note {

            text-align: center;

            margin-top: 40px;

            font-size: 0.9em;

            color: #777;

        }

        .footer-note a {

            color: #5a2d82;

            text-decoration: none;

        }

        .footer-note a:hover {

            text-decoration: underline;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Karma Evaluation Questions</h1>

        <form action="#" method="post"> <div class="question-block">

                <p>1. Am I acting with empathy and understanding towards others?</p>

                <div class="options">

                    <label><input type="radio" name="q1" value="yes" required> Yes</label>

                    <label><input type="radio" name="q1" value="no"> No</label>

                    <label><input type="radio" name="q1" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q1_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>2. Are my words truthful and respectful?</p>

                <div class="options">

                    <label><input type="radio" name="q2" value="yes" required> Yes</label>

                    <label><input type="radio" name="q2" value="no"> No</label>

                    <label><input type="radio" name="q2" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q2_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>3. Am I taking responsibility for my actions and their consequences?</p>

                <div class="options">

                    <label><input type="radio" name="q3" value="yes" required> Yes</label>

                    <label><input type="radio" name="q3" value="no"> No</label>

                    <label><input type="radio" name="q3" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q3_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>4. Am I prioritizing personal gain over the well-being of others?</p>

                <div class="options">

                    <label><input type="radio" name="q4" value="yes" required> Yes</label>

                    <label><input type="radio" name="q4" value="no"> No</label>

                    <label><input type="radio" name="q4" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q4_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>5. Does my action align with my values and principles?</p>

                <div class="options">

                    <label><input type="radio" name="q5" value="yes" required> Yes</label>

                    <label><input type="radio" name="q5" value="no"> No</label>

                    <label><input type="radio" name="q5" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q5_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>6. Am I being honest with myself and others?</p>

                <div class="options">

                    <label><input type="radio" name="q6" value="yes" required> Yes</label>

                    <label><input type="radio" name="q6" value="no"> No</label>

                    <label><input type="radio" name="q6" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q6_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>7. Am I showing gratitude and appreciation for what I have?</p>

                <div class="options">

                    <label><input type="radio" name="q7" value="yes" required> Yes</label>

                    <label><input type="radio" name="q7" value="no"> No</label>

                    <label><input type="radio" name="q7" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q7_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>8. Am I contributing positively to my community or environment?</p>

                <div class="options">

                    <label><input type="radio" name="q8" value="yes" required> Yes</label>

                    <label><input type="radio" name="q8" value="no"> No</label>

                    <label><input type="radio" name="q8" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q8_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>9. Am I letting go of negative emotions like anger, jealousy, or resentment?</p>

                <div class="options">

                    <label><input type="radio" name="q9" value="yes" required> Yes</label>

                    <label><input type="radio" name="q9" value="no"> No</label>

                    <label><input type="radio" name="q9" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q9_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>10. Am I practicing self-reflection and self-improvement?</p>

                <div class="options">

                    <label><input type="radio" name="q10" value="yes" required> Yes</label>

                    <label><input type="radio" name="q10" value="no"> No</label>

                    <label><input type="radio" name="q10" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q10_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>11. Am I listening actively and trying to understand others' perspectives?</p>

                <div class="options">

                    <label><input type="radio" name="q11" value="yes" required> Yes</label>

                    <label><input type="radio" name="q11" value="no"> No</label>

                    <label><input type="radio" name="q11" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q11_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>12. Am I being patient and tolerant in challenging situations?</p>

                <div class="options">

                    <label><input type="radio" name="q12" value="yes" required> Yes</label>

                    <label><input type="radio" name="q12" value="no"> No</label>

                    <label><input type="radio" name="q12" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q12_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>13. Am I using my resources (time, money, talents) wisely and for the greater good?</p>

                <div class="options">

                    <label><input type="radio" name="q13" value="yes" required> Yes</label>

                    <label><input type="radio" name="q13" value="no"> No</label>

                    <label><input type="radio" name="q13" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q13_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>14. Am I taking care of my physical, mental, and emotional well-being?</p>

                <div class="options">

                    <label><input type="radio" name="q14" value="yes" required> Yes</label>

                    <label><input type="radio" name="q14" value="no"> No</label>

                    <label><input type="radio" name="q14" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q14_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>15. Am I being kind and compassionate towards those in need?</p>

                <div class="options">

                    <label><input type="radio" name="q15" value="yes" required> Yes</label>

                    <label><input type="radio" name="q15" value="no"> No</label>

                    <label><input type="radio" name="q15" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q15_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>16. Am I standing up for what is right, even if it's difficult?</p>

                <div class="options">

                    <label><input type="radio" name="q16" value="yes" required> Yes</label>

                    <label><input type="radio" name="q16" value="no"> No</label>

                    <label><input type="radio" name="q16" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q16_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>17. Am I letting go of attachments and expectations?</p>

                <div class="options">

                    <label><input type="radio" name="q17" value="yes" required> Yes</label>

                    <label><input type="radio" name="q17" value="no"> No</label>

                    <label><input type="radio" name="q17" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q17_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>18. Am I practicing forgiveness and letting go of grudges?</p>

                <div class="options">

                    <label><input type="radio" name="q18" value="yes" required> Yes</label>

                    <label><input type="radio" name="q18" value="no"> No</label>

                    <label><input type="radio" name="q18" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q18_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>19. Am I being authentic and true to myself?</p>

                <div class="options">

                    <label><input type="radio" name="q19" value="yes" required> Yes</label>

                    <label><input type="radio" name="q19" value="no"> No</label>

                    <label><input type="radio" name="q19" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q19_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <div class="question-block">

                <p>20. Am I cultivating gratitude and appreciation for life's simple things?</p>

                <div class="options">

                    <label><input type="radio" name="q20" value="yes" required> Yes</label>

                    <label><input type="radio" name="q20" value="no"> No</label>

                    <label><input type="radio" name="q20" value="sometimes"> Sometimes</label>

                </div>

                <div class="comments">

                    <textarea name="q20_comments" placeholder="Optional comments..."></textarea>

                </div>

            </div>

 

            <button type="submit" class="submit-button">Submit Evaluation</button>

        </form>

 

        <div class="footer-note">

            <p>These questions can help you reflect on your actions, intentions, and personal growth.</p>

            <p>Learn more: <a href="http://www.iitbaba.net" target="_blank">www.iitbaba.net</a> | <a href="http://gMANOJ13.WIXSITE.COM/REALIZEDLIVING" target="_blank">gMANOJ13.WIXSITE.COM/REALIZEDLIVING</a> | @realizedliving4883</p>

        </div>

    </div>

</body>

</html>

 

 
 
 

Recent Posts

See All
OM NAMAH SHIVAYA DURING NAVRATRI...

🕉 The Power of "Om Namah Shivaya" During Navratri By Shiv Amrit IIT Baba USA Navratri is a sacred time when divine feminine energy –...

 
 
 
Om Namah Shivaya.

🕉 Realized Living: Walking the Path of "Om Namah Shivaya" in the JEE Journey Posted on September 17, 2025 | By IIT Baba Team In the...

 
 
 

Comments


bottom of page