WEBLEB
Home
AI Editor
Login
Pro
English
English
Français
Español
HEART
1297
mambetov1237.b
Open In Editor
Publish Your Code
0
Recommended
30 January 2025
CodePen Home Draw a Heart ❤️✍️
21 August 2025
Cardiologist Dr. Yilmaz: Heart Care & Cardiology Services
16 September 2025
HTML Heart Animation Data Stream
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: red; 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) */