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