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