Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
#blur {
font-size: 40px;
filter: blur(3px);
-webkit-filter: blur(3px);
}
</style>
</head>
<body>
<div id="blur">Texte flou</div>
</body>
</html>