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