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