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