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