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