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