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