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