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