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