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