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