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