Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, sans-serif; } .conic-gradient { width: 250px; height: 250px; border-radius: 50%; /* Rotating around the center */ background-image: conic-gradient(red, yellow, aqua, blue, magenta, red); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } </style> </head> <body> <div class="conic-gradient"></div> </body> </html>