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