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