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