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