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