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