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