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