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