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