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