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