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