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