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