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