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