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