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