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