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