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