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