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