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