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