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