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