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