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