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