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