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