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