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