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