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