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