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