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