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