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