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