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