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