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