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