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