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