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