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