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