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