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