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