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