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