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