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