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