Use on the webTotal Use [ 4433 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/3371ae257cb48d36e0c8cd488f028309?family=Bakemono+Stereo+Trial+ExLight" 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/3371ae257cb48d36e0c8cd488f028309?family=Bakemono+Stereo+Trial+ExLight);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Bakemono Stereo Trial ExLight";
src: url("https://db.onlinewebfonts.com/t/3371ae257cb48d36e0c8cd488f028309.eot");
src: url("https://db.onlinewebfonts.com/t/3371ae257cb48d36e0c8cd488f028309.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/3371ae257cb48d36e0c8cd488f028309.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/3371ae257cb48d36e0c8cd488f028309.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/3371ae257cb48d36e0c8cd488f028309.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/3371ae257cb48d36e0c8cd488f028309.svg#Bakemono Stereo Trial ExLight")format("svg");
}
2CSS rules to specify fonts
font-family: "Bakemono Stereo Trial ExLight";