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