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