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