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