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