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