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