Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
span {
display: inline-block;
margin: 40px;
}
.flipV {
transform: scale(1, -1);
color: #8ebf42;
-moz-transform: scale(1, -1);
-webkit-transform: scale(1, -1);
-o-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
</style>
</head>
<body>
<span class="flipV">W3Docs &#9657;</span>
</body>
</html>