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