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