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