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