WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
bachir123 द्वारा एक कोड
675
bachir123
संपादक में खोलें
अपना कोड प्रकाशित करें
अनुशंसित
21 January 2025
कोडपेन होम स्टार्स और वार्प स्पीड
13 June 2025
मेटेहन द्वारा एक कोड
27 May 2025
अलेजांद्रोकुन्द्राह द्वारा लिखित एक कोड
HTML
Copy
heart
CSS
Copy
body { /* display: flex; */ justify-content: center; align-items: center; height: 100vh; margin: 200px; } .heart { height: 100px; width: 1450px; position: relative; } .heart::before, .heart::after { content: ""; position: absolute; left: 20px; top: 0; width: 50px; height: 80px; background-color: blue; border-radius: 25px 25px 0 0; transform: rotate(45deg); } .heart::after { left: 0; transform: rotate(-45deg); } <!-- Replace with your HTML Code (Leave empty if not needed) -->
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */