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