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