Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> body, html { height: 100%; margin: 0; font-family: Arial, Helvetica, sans-serif; } h2 { font-size: 30px; } .image { background-image: url("/uploads/media/default/0001/05/15552fb22caf79be6cc2c60b9a1afe9016889422.jpeg"); height: 100%; background-position: center; background-repeat: no-repeat; background-size: cover; filter: blur(5px); -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); } .text { color: #eeeeee; font-weight: bold; border: 3px solid #cccccc; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; padding: 20px; text-align: center; } </style> </head> <body> <div class="image"></div> <div class="text"> <h1>W3DOCS</h1> <h2>Blurred Background Image</h2> <p>Snippet</p> </div> </body> </html>