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