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