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