Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> article { padding: 10px; margin: 15px auto; font-size: 18px; } p { color: #444; line-height: 1.6; margin: 20px 0; background: #E7E7E2; } q { display: block; margin: 25px 0; text-transform: uppercase; text-align: center; font-family: sans-serif; font-size: 30px; color: #ff0052; color: #8e2b88; -webkit-text-fill-color: transparent; background: -webkit-gradient(linear, left top, left bottom, from(#ff0052), to(#8e2b88)); background: -o-gradient(linear, left top, left bottom, from(#ff0052), to(#8e2b88)); -webkit-background-clip: text; } q:before { content: ''; } </style> </head> <body> <article> <p> Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. </p> <q> The text-fill-color property is used with -webkit- extension. </q> <p> There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. </p> </article> </body> </html>