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