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