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