Untitled
unknown
php
3 years ago
1.0 kB
7
Indexable
<?php
echo '<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<title>CSS ASCII ART</title>
<script>
p {
font-size: 5px;
line-height: 5px;
text-align: justify;
-webkit-background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-filter: grayscale(1) invert(0);
filter: grayscale(1) invert(0);
background: "url(' . $pic . ')";
background-attachment: fixed;
-webkit-background-clip: text;
-webkit-text-fill-color: rgba(255,255,255,0.2);
}
</script>
</head>
<body>
<div id="artOrg">
<p id="art">'.$text.'</p>
</div>
</body>
</html>';
?>Editor is loading...