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