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