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