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