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