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