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