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