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