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