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