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