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