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