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