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