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