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