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