Skip to content

import time dry_percent = 0 print("दीवार पर पेंट कर दिया गया है। अब इसके सूखने का इंतज़ार करें...") while dry_percent < 100: time.sleep(10) # हर 10 सेकंड में 1% सूखेगा dry_percent += 1 print(f"पेंट {dry_percent}% सूख चुका है। बोरियत महसूस हो रही है?") print("बधाई हो! पेंट सूख गया। आपने अपने जीवन के 1000 सेकंड बर्बाद कर दिए!")Update index.md#479

Open
f85337565-creator wants to merge 1 commit intoGDevelopApp:mainfrom
f85337565-creator:patch-1

Conversation

@f85337565-creator
Copy link

<title>My Doll Game</title> <style> body { font-family: 'Comic Sans MS', cursive, sans-serif; background-color: #ffe4e1; text-align: center; margin: 0; padding: 20px; } #game-container { background: white; border: 5px solid #ff69b4; border-radius: 20px; display: inline-block; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .doll-area { position: relative; width: 200px; height: 300px; background: #fefefe; margin: 0 auto 20px; border-radius: 10px; border: 2px dashed #ffb6c1; }
    /* डॉल के हिस्से */
    .doll-body { position: absolute; bottom: 50px; left: 50px; width: 100px; height: 180px; background: #ffdbac; border-radius: 50px 50px 20px 20px; }
    .doll-head { position: absolute; top: -45px; left: 10px; width: 80px; height: 80px; background: #ffdbac; border-radius: 50%; }
    .doll-hair { position: absolute; top: -55px; left: 5px; width: 90px; height: 60px; background: #4b2c20; border-radius: 50% 50% 0 0; transition: 0.3s; }
    .doll-dress { position: absolute; top: 40px; left: 5px; width: 90px; height: 100px; background: #ff69b4; border-radius: 10px 10px 50% 50%; transition: 0.3s; }
    
    .controls { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    button { background: #ff69b4; color: white; border: none; padding: 10px; border-radius: 10px; font-size: 16px; cursor: pointer; }
    button:active { background: #ff1493; }
    h1 { color: #d81b60; }
</style>
<h1>मेरी प्यारी डॉल 🎀</h1>

<div id="game-container">
    <div class="doll-area">
        <div class="doll-body">
            <div class="doll-head"></div>
            <div id="hair" class="doll-hair"></div>
            <div id="dress" class="doll-dress"></div>
        </div>
    </div>

    <div class="controls">
        <button onclick="changeDress('#ff0000')">लाल फ्रॉक</button>
        <button onclick="changeDress('#ffff00')">पीली फ्रॉक</button>
        <button onclick="changeDress('#00ced1')">नीली फ्रॉक</button>
        <button onclick="changeHair('#000000')">काले बाल</button>
        <button onclick="changeHair('#ffd700')">सुनहरे बाल</button>
        <button onclick="changeDress('#9370db')">बैंगनी फ्रॉक</button>
    </div>
</div>

<script>
    function changeDress(color) {
        document.getElementById('dress').style.backgroundColor = color;
    }
    function changeHair(color) {
        document.getElementById('hair').style.backgroundColor = color;
    }
</script>

<!DOCTYPE html>
<html lang="hi">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Doll Game</title>
    <style>
        body { font-family: 'Comic Sans MS', cursive, sans-serif; background-color: #ffe4e1; text-align: center; margin: 0; padding: 20px; }
        #game-container { background: white; border: 5px solid #ff69b4; border-radius: 20px; display: inline-block; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .doll-area { position: relative; width: 200px; height: 300px; background: #fefefe; margin: 0 auto 20px; border-radius: 10px; border: 2px dashed #ffb6c1; }
        
        /* डॉल के हिस्से */
        .doll-body { position: absolute; bottom: 50px; left: 50px; width: 100px; height: 180px; background: #ffdbac; border-radius: 50px 50px 20px 20px; }
        .doll-head { position: absolute; top: -45px; left: 10px; width: 80px; height: 80px; background: #ffdbac; border-radius: 50%; }
        .doll-hair { position: absolute; top: -55px; left: 5px; width: 90px; height: 60px; background: #4b2c20; border-radius: 50% 50% 0 0; transition: 0.3s; }
        .doll-dress { position: absolute; top: 40px; left: 5px; width: 90px; height: 100px; background: #ff69b4; border-radius: 10px 10px 50% 50%; transition: 0.3s; }
        
        .controls { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        button { background: #ff69b4; color: white; border: none; padding: 10px; border-radius: 10px; font-size: 16px; cursor: pointer; }
        button:active { background: #ff1493; }
        h1 { color: #d81b60; }
    </style>
</head>
<body>

    <h1>मेरी प्यारी डॉल 🎀</h1>
    
    <div id="game-container">
        <div class="doll-area">
            <div class="doll-body">
                <div class="doll-head"></div>
                <div id="hair" class="doll-hair"></div>
                <div id="dress" class="doll-dress"></div>
            </div>
        </div>

        <div class="controls">
            <button onclick="changeDress('#ff0000')">लाल फ्रॉक</button>
            <button onclick="changeDress('#ffff00')">पीली फ्रॉक</button>
            <button onclick="changeDress('#00ced1')">नीली फ्रॉक</button>
            <button onclick="changeHair('#000000')">काले बाल</button>
            <button onclick="changeHair('#ffd700')">सुनहरे बाल</button>
            <button onclick="changeDress('#9370db')">बैंगनी फ्रॉक</button>
        </div>
    </div>

    <script>
        function changeDress(color) {
            document.getElementById('dress').style.backgroundColor = color;
        }
        function changeHair(color) {
            document.getElementById('hair').style.backgroundColor = color;
        }
    </script>

</body>
</html>
@vercel
Copy link

vercel bot commented Feb 26, 2026

@f85337565-creator is attempting to deploy a commit to the GDevelop Team on Vercel.

A member of the Team first needs to authorize it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant