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