Use on the webTotal Use [ 3885 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/aedae4318c97efe03f3cd0117a85480c?family=Advine+Pixel+Demo" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/aedae4318c97efe03f3cd0117a85480c?family=Advine+Pixel+Demo);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Advine Pixel Demo";
src: url("https://db.onlinewebfonts.com/t/aedae4318c97efe03f3cd0117a85480c.eot");
src: url("https://db.onlinewebfonts.com/t/aedae4318c97efe03f3cd0117a85480c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/aedae4318c97efe03f3cd0117a85480c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/aedae4318c97efe03f3cd0117a85480c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/aedae4318c97efe03f3cd0117a85480c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/aedae4318c97efe03f3cd0117a85480c.svg#Advine Pixel Demo")format("svg");
}
2CSS rules to specify fonts
font-family: "Advine Pixel Demo";