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