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