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