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