I downloaded a font , I'm trying to create a banner in css and I need this font but it just doesn't show up.
@font-face {
font-family: Minecrafter;
src: url("../fonts/Minecrafter_3.ttf") format('truetype');
}
#logo{
width:100%;
height:100px;
background-color: red;
text-align:center;
font-family:Minecrafter;
font-size:40px;
}
Can I check for errors somehow? I'm developing a win8 app.