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