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