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