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