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