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