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