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