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