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