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