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