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