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