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