in a css file I have this code
mainTitle.abc {
text-align: center;
font-family:"Babylon5 Hollow";
color: #93ff00;
font-size: 50px;
font-weight: bolder;
}
and in my html file I use it like this:
<body>
<div style="text-align: center;">
<mainTitle class="abc">The Web is the future</mainTitle>
</div>
</body>
IE11 Displays the intended text in the predefined format, but Safari does not display the text in the wanted format. What am I doing wrong?