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