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