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