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