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