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