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