What's wrong with this code?
- Nothing's wrong with this code
linear-gradient() cannot take more than four colorslinear-gradient() cannot take more than three colorswhite must be included in linear-gradient()Nothing's wrong with this code.
<html> <head> <style> h1 {background: linear-gradient(red, orange, yellow, green, blue, indigo, violet); padding: 100px; text-align: center; color: white;}</style> </head> <body> <h1>RAINBOW</h1> </body> </html>]]>