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