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