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