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