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