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