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