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