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