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