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