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