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