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