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