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