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