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