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