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