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