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