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