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