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