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