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