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