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