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