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(at 0% 50%, red 10%, yellow 30%, #1eff00 60%); } </style> </head> <body> <div class="gradient"></div> </body> </html>