Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .gradient { height: 250px; width: 250px; background-color: blue; background: conic-gradient(from 35deg, #ff0000, #ffa600, #fcf000, #03ff0f, #be05fc, #ff0095); } </style> </head> <body> <div class="gradient"></div> </body> </html>