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