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