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