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