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