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