Forum Moderators: not2easy
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1">
<title>Character Entity Example</title>
<!--
The internal CSS should be transferred to an external file
<link rel="stylesheet" href="screen.css" media="screen">
-->
<style media="screen">
body {
background-color: #f0f0f0;
font: normal 1em / 1.62em sans-serif;
}
#indicator1,
#indicator2 {
width: 10em;
padding: 0.25em 0;
margin: 0.25em 0;
border: 1px solid #999;
border-radius: 0.4em;
background-color: #fff;
text-align: center;
}
#indicator1::before {
display: inline-block;
margin-right: 0.3em;
vertical-align: middle;
font-size: 1.5em;
content: '\02190';
}
#indicator2::after {
display: inline-block;
margin-left: 0.3em;
vertical-align: middle;
font-size: 1.5em;
content: '\02192';
}
</style>
</head>
<body>
<div id="indicator1">Go this way</div>
<div id="indicator2">Go this way</div>
</body>
</html>