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