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