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