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