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