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