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