TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> div { height: 200px; width: 400px; line-height: 200px; text-align: center; font-size: 50px; } #div1 { background-image: linear-gradient(to bottom right, #ff7649, #24abc6); } </style> </head> <body> <div id="div1">Hello World</div> </body> </html>