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