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