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