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