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