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