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