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