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