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