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