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