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