[abap] sabeer
Viewer
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Gradient Background for H1</title>
- <style>
- h1 {
- color: #cecece;
- background: rgb(42, 42, 42);
- background: linear-gradient(277deg, rgba(42, 42, 42, 1) 3%, rgba(92, 92, 92, 1) 32%, rgba(177, 176, 176, 1) 51%, rgba(92, 92, 92, 1) 68%, rgba(42, 42, 42, 1) 100%);
- padding: 20px;
- border-radius: 10px;
- text-align: center;
- }
- </style>
- </head>
- <body>
- <h1>This is a heading with gradient background</h1>
- </body>
- </html>
Editor
You can edit this paste and save as new: