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