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