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