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