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