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