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