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