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